diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d1aae178 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +[*] +indent_size = 4 +indent_style = space + +[Makefile] +indent_size = 8 +indent_style = tab + +[{*js,*jsx,*ts,*tsx,*json,*prettierrc,*yml,*yaml}] +indent_size = 2 diff --git a/.env.dist b/.env.dist deleted file mode 100644 index 5826d517..00000000 --- a/.env.dist +++ /dev/null @@ -1,15 +0,0 @@ -# api -DEVBUILD=1 -DJANGO_CONFIGURATION=Dev -DATABASE_URL=postgres://postgres@db:5432/postgres - -# client -NODE_ENV=development -REACT_APP_DJANGO_SITE_URL=http://localhost -REACT_APP_DJANGO_PORT=8030 -REACT_APP_DJANGO_API_ENDPOINT=api/v1 - -# api keys -REACT_APP_CAPTCHA_API_KEY= -HERE_MAPS_API_KEY= -REACT_APP_HERE_MAPS_API_KEY= diff --git a/.env.example.dev b/.env.example.dev new file mode 100644 index 00000000..f4181cba --- /dev/null +++ b/.env.example.dev @@ -0,0 +1,46 @@ +# api deployment +ENVIRONMENT=development +API_PORT=8030 +SECRET_KEY=test + +RUN_MIGRATION=True +RUN_COMPILE_MESSAGES=True +RUN_COLLECT_STATIC=False +RUN_LOAD_INITIAL_DATA=False +RUN_CREATE_SUPER_USER=True + +# django +DEBUG=True +ENABLE_DEBUG_TOOLBAR=True + +SITE_URL= +EMAIL_HOST= +EMAIL_PORT=25 +EMAIL_HOST_USER= +EMAIL_HOST_PASSWORD= +EMAIL_USE_TLS=no +EMAIL_USE_SSL=no + +NO_REPLY_EMAIL= +DEFAULT_FROM_EMAIL= + +# admin +DJANGO_ADMIN_EMAIL=a@example.co +DJANGO_ADMIN_PASSWORD=a + +# database +POSTGRES_USER=postgres +POSTGRES_PASSWORD=secret +POSTGRES_DB=seismic_site +POSTGRES_HOST=db +POSTGRES_PORT= + +# client +REACT_APP_DJANGO_SITE_URL=http://localhost +REACT_APP_DJANGO_PORT=8030 +REACT_APP_DJANGO_API_ENDPOINT=api/v1 + +# external api keys +REACT_APP_CAPTCHA_API_KEY= +HERE_MAPS_API_KEY= +REACT_APP_HERE_MAPS_API_KEY= diff --git a/.env.example.prod b/.env.example.prod new file mode 100644 index 00000000..b1ff3145 --- /dev/null +++ b/.env.example.prod @@ -0,0 +1,54 @@ +# api deployment +ENVIRONMENT=production +API_PORT=8030 +SECRET_KEY=test + +RUN_MIGRATION=True +RUN_COMPILE_MESSAGES=True +RUN_COLLECT_STATIC=True +RUN_LOAD_INITIAL_DATA=False +RUN_CREATE_SUPER_USER=True + +# django +DEBUG=False +ENABLE_DEBUG_TOOLBAR=False + +SITE_URL= +EMAIL_HOST= +EMAIL_PORT=25 +EMAIL_HOST_USER= +EMAIL_HOST_PASSWORD= +EMAIL_USE_TLS=False +EMAIL_USE_SSL=False + +NO_REPLY_EMAIL= +DEFAULT_FROM_EMAIL= + +ALLOWED_HOSTS=localhost +CSRF_TRUSTED_ORIGINS=http://localhost +CORS_ALLOWED_ORIGINS=http://localhost +CORS_ALLOWED_ORIGIN_REGEXES=http://localhost* + +# admin +DJANGO_ADMIN_EMAIL=a@example.co +DJANGO_ADMIN_PASSWORD=a + +# database +POSTGRES_USER=postgres +POSTGRES_PASSWORD=secret +POSTGRES_DB=seismic_site +POSTGRES_HOST=db +POSTGRES_PORT= + +BACKGROUND_WORKERS=2 +GUNICORN_WORKERS=2 + +# client +REACT_APP_DJANGO_SITE_URL=http://localhost +REACT_APP_DJANGO_PORT=8030 +REACT_APP_DJANGO_API_ENDPOINT=api/v1 + +# external api keys +REACT_APP_CAPTCHA_API_KEY= +HERE_MAPS_API_KEY= +REACT_APP_HERE_MAPS_API_KEY= diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index a1e5eeab..00000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,8 +0,0 @@ -# These owners will be the default owners for everything in -# the repo. Unless a later match takes precedence, -# they will be requested for review when someone -# opens a pull request. -* @tudoramariei @catileptic - -# More details on creating a codeowners file: -# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index ee0c442c..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,16 +0,0 @@ -version: 2 -updates: -- package-ecosystem: npm - directory: "/client" - schedule: - interval: monthly - timezone: Europe/Bucharest - open-pull-requests-limit: 5 - target-branch: develop - reviewers: - - tudoramariei - assignees: - - tudoramariei - labels: - - "dependencies" - - "client: ReactJS" diff --git a/.github/workflows/api_pipeline.yml b/.github/workflows/api_pipeline.yml index c532b99a..a892b221 100644 --- a/.github/workflows/api_pipeline.yml +++ b/.github/workflows/api_pipeline.yml @@ -8,22 +8,22 @@ on: paths: - 'api/**.py' - 'api/requirements*.*' - - 'api/Dockerfile' + - 'docker/dockerfiles/Dockerfile.backend*' - 'docker-compose.yml' - '.github/workflows/api_pipeline.yml' jobs: static_analysis: name: Run black formatting check - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.11 + uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.11 - name: Install Black with latest pip run: | @@ -32,19 +32,19 @@ jobs: - name: Check formatting with black run: | - black --line-length 120 --target-version py37 --exclude migrations --check ./api + black --line-length 120 --target-version py311 --exclude migrations --check ./api tests: name: Run api tests - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 + - name: Set up Python 3.11 + uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.11 - name: Install dependencies run: | @@ -53,4 +53,4 @@ jobs: - name: Run tests run: | - cd ./api && pytest + ENVIRONMENT=test DJANGO_SETTINGS_MODULE=seismic_site.settings.test ./api/manage.py test diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..9f4b7a31 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,35 @@ +on: + push: + branches: + - 'main' + tags: + - 'v*' + +name: Build Docker image + +jobs: + + build-backend-amd64: + name: backend/amd64 + uses: code4romania/.github/.github/workflows/build-push-image.yml@main + with: + images: ghcr.io/code4romania/seismic-risc-backend + context: ./ + dockerfile: ./docker/dockerfiles/Dockerfile.backend + registry: ghcr.io + secrets: + username: ${{ github.actor }} + token: ${{ secrets.GITHUB_TOKEN }} + +# disable frontend build for now since we're using Vercel +# build-frontend-amd64: +# name: frontend/amd64 +# uses: code4romania/.github/.github/workflows/build-push-image.yml@main +# with: +# images: ghcr.io/code4romania/seismic-risc-frontend +# context: ./client +# dockerfile: ./docker/dockerfiles/Dockerfile.frontend +# registry: ghcr.io +# secrets: +# username: ${{ github.actor }} +# token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/client_pipeline.yml b/.github/workflows/client_pipeline.yml index 01550771..0a4441aa 100644 --- a/.github/workflows/client_pipeline.yml +++ b/.github/workflows/client_pipeline.yml @@ -8,22 +8,22 @@ on: paths: - 'client/**.js' - 'client/package*.json' - - 'client/Dockerfile' + - 'docker/dockerfiles/Dockerfile.frontend*' - 'docker-compose.yml' - '.github/workflows/client_pipeline.yml' jobs: run-linters: name: Run linters - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 18 - name: Install Node.js dependencies run: npm install @@ -35,15 +35,15 @@ jobs: tests: name: Run client tests - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 18 - name: Install Node.js dependencies run: npm install diff --git a/.github/workflows/codeql-analysis-js.yml b/.github/workflows/codeql-analysis-js.yml index a9209018..0f0e2dfb 100644 --- a/.github/workflows/codeql-analysis-js.yml +++ b/.github/workflows/codeql-analysis-js.yml @@ -8,7 +8,7 @@ on: paths: - 'client/**.js' - 'client/package*.json' - - 'client/Dockerfile' + - 'docker/dockerfiles/Dockerfile.frontend*' - 'docker-compose.yml' - '.github/workflows/client_pipeline.yml' - '.github/workflows/code-analysis-js.yml' @@ -18,7 +18,7 @@ on: jobs: analyze_js: name: Analyze code - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false @@ -27,14 +27,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 2 - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/codeql-analysis-py.yml b/.github/workflows/codeql-analysis-py.yml index 8bfe5664..f2c41980 100644 --- a/.github/workflows/codeql-analysis-py.yml +++ b/.github/workflows/codeql-analysis-py.yml @@ -8,7 +8,7 @@ on: paths: - 'api/**.py' - 'api/requirements*.*' - - 'api/Dockerfile' + - 'docker/dockerfiles/Dockerfile.backend*' - 'docker-compose.yml' - '.github/workflows/api_pipeline.yml' - '.github/workflows/code-analysis-py.yml' @@ -18,7 +18,7 @@ on: jobs: analyze_py: name: Analyze code - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false @@ -27,15 +27,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 2 - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/deploy_staging.yml b/.github/workflows/deploy_staging.yml deleted file mode 100644 index 845626b5..00000000 --- a/.github/workflows/deploy_staging.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Deploy to staging env - -on: - push: - branches: - - 'develop' - -jobs: - deploy: - name: Deploy to staging env - runs-on: ubuntu-18.04 - - steps: - - name: Executing remote SSH commands - if: github.ref == 'refs/heads/develop' - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.DEV_SERVER_IP }} - username: ${{ secrets.DEV_SERVER_SSH_USERNAME }} - key: ${{ secrets.DEV_SERVER_SSH_KEY }} - script: "/root/seismic-risc/deploy/pull.sh" diff --git a/.github/workflows/local_deployment_pipeline.yml b/.github/workflows/local_deployment_pipeline.yml deleted file mode 100644 index fdb89afd..00000000 --- a/.github/workflows/local_deployment_pipeline.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Run first-time set-up for MacOS and Linux - -on: - push: - branches: - - 'main' - - 'develop' - pull_request: - branches: - - 'main' - - 'develop' - paths: - - 'api/**' - - 'client/**' - - '.github/workflows/*' - - './docker-compose.yml' - -jobs: - ubuntu-set-up: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - name: Set-up Docker - run: | - make install-docker-ubuntu - - name: Initialize environment - run: | - make init-env diff --git a/.gitignore b/.gitignore index 9afe007b..531482a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,225 @@ +api/static/* +api/public/* + +# dotenv environment variables file +.env +.env.dev +.env.test +.env.prod +.env.* +!.env.example.* + +### VisualStudioCode template +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +.idea +.idea/artifacts +.idea/compiler.xml +.idea/jarRepositories.xml +.idea/modules.xml +.idea/*.iml +.idea/modules +*.iml +*.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### VirtualEnv template +# Virtualenv +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ +[Bb]in +[Ii]nclude +[Ll]ib +[Ll]ib64 +[Ll]ocal +[Ss]cripts +pyvenv.cfg +pip-selfcheck.json + +### Node template +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# parcel-bundler cache (https://parceljs.org/) +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Python template # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -20,6 +242,7 @@ parts/ sdist/ var/ wheels/ +share/python-wheels/ *.egg-info/ .installed.cfg *.egg @@ -38,24 +261,26 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ +.nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover +*.py,cover .hypothesis/ .pytest_cache/ +cover/ # Translations *.mo *.pot # Django stuff: -*.log local_settings.py db.sqlite3 -.pgdata +db.sqlite3-journal # Flask stuff: instance/ @@ -68,31 +293,45 @@ instance/ docs/_build/ # PyBuilder +.pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints +# IPython +profile_default/ +ipython_config.py + # pyenv -.python-version +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock -# celery beat schedule file +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff celerybeat-schedule +celerybeat.pid # SageMath parsed files *.sage.py # Environments -.env .venv -.env.bak -.venv.bak env/ venv/ ENV/ env.bak/ venv.bak/ -prod.env # Spyder project settings .spyderproject @@ -106,15 +345,17 @@ prod.env # mypy .mypy_cache/ +.dmypy.json +dmypy.json -# IDEs -.idea -.vscode +# Pyre type checker +.pyre/ -# Mac stuff -.DS_Store +# pytype static type analyzer +.pytype/ -# files -~*.xlsx +# Cython debug symbols +cython_debug/ -client/storybook-static/ +.DS_Store +client/storybook-static/* diff --git a/Makefile b/Makefile index 29abf0e3..6901b2ce 100644 --- a/Makefile +++ b/Makefile @@ -1,98 +1,144 @@ help: ## Display a help message detailing commands and their purpose @echo "Commands:" - @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + @grep -E '^([a-zA-Z_-]+:.*?## .*|#+ (.*))$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' @echo "" -## [DEV ENV SETUP] -install-docker-ubuntu: ## installs docker and docker-compose on Ubuntu - sudo apt-get remove docker docker-engine docker.io containerd runc - sudo apt-get update - sudo apt-get -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo apt-key fingerprint 0EBFCD88 - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(shell lsb_release -cs) stable" || { echo "$(shell lsb_release -cs) is not yet supported by docker.com."; exit 1; } - sudo apt-get update - sudo apt-get install -y docker-ce gettext - sudo curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(shell uname -s)-$(shell uname -m)" -o /usr/local/bin/docker-compose - sudo chmod +x /usr/local/bin/docker-compose - -install-docker-osx: ## installs homebrew (you can skip this at runtime), docker and docker-compose on OSX - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - brew update - brew cask install docker - brew install docker-compose gettext - -init-env: ## builds the container, sets up the database and fixtures - cp .env.dist .env - make build-dev - make init-db - -build: ## builds the container - docker-compose build --pull - -build-dev: ## builds the container with the DEVBUILD flag - docker-compose build --build-arg DEVBUILD=1 --pull - -init-db: ## sets up the database and fixtures - docker-compose down -t 60 - docker-compose run --rm api "./wait_for_db.py && ./manage.py migrate --no-input" - docker-compose run --rm api "./manage.py createsuperuser" - docker-compose run --rm api "./manage.py loaddata buildings" - docker-compose run --rm api "./manage.py loaddata pages" - -drop-db: ## drops the database - docker-compose down -t 60 - docker volume rm seismic-risc_pgdata - -redo-db: drop-db init-db ## drops the database, then sets up the database and fixtures - -## [UTILS] -requirements-build: ## run pip compile and add requirements from the *.in files - docker-compose run --rm --no-deps --entrypoint "bash -c" api "cd /code && pip-compile -o requirements-dev.txt requirements-dev.in requirements.in && pip-compile -o requirements.txt requirements.in" -requirements-update: ## run pip compile and rebuild the requirements files - docker-compose run --rm --no-deps --entrypoint "bash -c" api "cd /code && pip-compile -r -U -o requirements-dev.txt requirements-dev.in requirements.in && pip-compile -r -U -o requirements.txt requirements.in && chmod a+r requirements.txt && chmod a+r requirements-dev.txt" +## [Managing the project] +### Stopping the containers and dropping the databases +stop-dev: ## stops the dev project + docker compose down -t 60 + +drop-dev: ## stops the dev project + docker compose down -v -t 60 + +stop-prod: ## stops the dev project + docker compose -f docker-compose.prod.yml down -t 60 + +drop-prod: ## stops the dev project + docker compose -f docker-compose.prod.yml down -v -t 60 + +### Building & starting the containers +up-dev: ## run the project + docker compose up --build + +upd-dev: ## run the project in detached mode + docker compose up -d --build + +build-prod: + docker compose -f docker-compose.prod.yml build \ + --build-arg $$(cat .env.prod | grep ENVIRONMENT) \ + --build-arg $$(cat .env.prod | grep REACT_APP_CAPTCHA_API_KEY) \ + --build-arg $$(cat .env.prod | grep REACT_APP_HERE_MAPS_API_KEY) \ + --build-arg $$(cat .env.prod | grep REACT_APP_DJANGO_SITE_URL) \ + --build-arg $$(cat .env.prod | grep REACT_APP_DJANGO_PORT) \ + --build-arg $$(cat .env.prod | grep REACT_APP_DJANGO_API_ENDPOINT) + + +up-prod: ## run the project + docker compose -f docker-compose.prod.yml up + +upd-prod: ## builds the container with the production flag + docker compose -f docker-compose.prod.yml up -d + +### Using the dev setup +run-dev: up-dev ## run the project +rund-dev: upd-dev ## run the project in detached mode +redo-dev: drop-dev up-dev ## delete the db and rerun the project +redod-dev: drop-dev upd-dev ## delete the db and rerun the project in detached mode + +### With an image built for production +run-prod: build-prod up-prod ## run the project with production settings +rund-prod: build-prod upd-prod ## run the project with production settings in detached mode +redo-prod: drop-prod build-prod up-prod ## delete the db and rerun the project +redod-prod: drop-prod build-prod upd-prod ## delete the db and rerun the project in detached mode + +### Other run options +run: run-dev ## set the default run command to dev +redo: redo-dev ## set the default redo command to dev +rund: rund-dev ## set the default run command to dev +redod: redod-dev ## set the default redo command to dev + +stop: stop-dev stop-prod ## stop all running projects + +drop: drop-dev drop-prod ## drop all databases + -migrations: ## generate migrations in a clean container - docker-compose run --rm api "./wait_for_db.py && ./manage.py makemigrations" +## [Monitoring the containers] +logs-dev: ## show the logs of the containers + docker compose logs -f api + +logs: logs-dev ## set the default logs command to dev + +logs-prod: ## show the logs of the containers + docker compose -f docker-compose.prod.yml logs -f api + + +## [Django operations] +makemigrations: ## generate migrations in a clean container + docker compose exec api sh -c "python3 -Wd ./manage.py makemigrations $(apps)" migrate: ## apply migrations in a clean container - docker-compose run --rm api "./manage.py migrate" + docker compose exec api sh -c "python3 -Wd ./manage.py migrate $(apps)" + +migrations: makemigrations migrate ## generate and apply migrations + makemessages: ## generate the strings marked for translation - docker-compose exec api python manage.py makemessages -a + docker compose exec api sh -c "python3 -Wd ./manage.py makemessages -a" compilemessages: ## compile the translations - docker-compose exec api python manage.py compilemessages + docker compose exec api sh -c "python3 -Wd ./manage.py compilemessages" + +messages: makemessages compilemessages ## generate and compile the translations + + +collectstatic: ## collect the static files + docker compose exec api sh -c "python3 -Wd ./manage.py collectstatic --no-input" + +format: ## format the code with black & ruff + docker compose exec api sh -c "black ./api && ruff check --fix ./api" pyshell: ## start a django shell - docker-compose run --rm api "./manage.py shell" + docker compose exec -it api sh -c "python3 -Wd ./manage.py shell" -black: ## run the Black formatter on the Python code - docker-compose run --rm api "black --line-length 120 --target-version py37 --exclude migrations ." +sh: ## start a sh shell + docker compose exec -it api sh -c "sh" -## [TEST] -test: ## run all tests - docker-compose run --rm api "pytest" +bash: ## start a bash shell + docker compose exec -it api sh -c "bash" -test-pdb: ## run tests and enter debugger on failed assert or error - docker-compose run --rm api "pytest --pdb" -test-lf: ## rerun tests that failed last time - docker-compose run --rm api "pytest --lf" +## [Requirements management] +requirements-build: ## run pip compile and add requirements from the *.in files + docker compose exec api sh -c " \ + pip-compile --strip-extras --resolver=backtracking -o requirements.txt requirements.in && \ + pip-compile --strip-extras --resolver=backtracking -o requirements-dev.txt requirements-dev.in \ + " + +requirements-update: ## run pip compile and rebuild the requirements files + docker compose exec api sh -c " \ + pip-compile --strip-extras --resolver=backtracking -r -U -o requirements.txt requirements.in && \ + pip-compile --strip-extras --resolver=backtracking -r -U -o requirements-dev.txt requirements-dev.in && \ + chmod a+r requirements.txt && \ + chmod a+r requirements-dev.txt \ + " -## [CLEAN] -clean: clean-docker clean-py ## remove all build, test, coverage and Python artifacts +## [Clean-up] clean-docker: ## stop docker containers and remove orphaned images and volumes - docker-compose down -t 60 + docker compose down -v -t 60 + docker compose -f docker-compose.prod.yml down -v -t 60 docker system prune -f clean-py: ## remove Python test, coverage, file artifacts, and compiled message files - find ./api -name '.coverage' -delete - find ./api -name '.pytest_cache' -delete - find ./api -name '__pycache__' -delete - find ./api -name 'htmlcov' -delete - find ./api -name '*.pyc' -delete - find ./api -name '*.pyo' -delete - find ./api -name '*.mo' -delete + find ./backend -name '*.mo' -delete + find ./backend -name '*.pyc' -delete + find ./backend -name '*.pyo' -delete + find ./backend -name '.coverage' -delete + find ./backend -name '.pytest_cache' -delete + find ./backend -name '.ruff_cache' -delete + find ./backend -name '__pycache__' -delete + find ./backend -name 'htmlcov' -delete + +clean: clean-docker clean-py ## remove all build, test, coverage and Python artifacts diff --git a/README.md b/README.md index ccadab21..a965f997 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -# Bulina Roșie +# Acasă în Siguranță -[![Datree](https://s3.amazonaws.com/catalog.static.datree.io/datree-badge-20px.svg)](https://datree.io/?src=badge) [![GitHub contributors](https://img.shields.io/github/contributors/code4romania/seismic-risc.svg)](https://github.com/code4romania/seismic-risc/graphs/contributors) [![GitHub last commit](https://img.shields.io/github/last-commit/code4romania/seismic-risc.svg)](https://github.com/code4romania/seismic-risc/commits/develop) [![License: MPL 2.0](https://img.shields.io/badge/license-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) @@ -15,78 +14,112 @@ [1.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_twitter.png -[2.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_facebook.png -[3.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_instagram.png -[4.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_linkedin.png [1]: https://twitter.com/Code4Romania + +[2.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_facebook.png + [2]: https://facebook.com/code4romania/ -[3]: https://instagram.com/code4romania/ -[4]: https://linkedin.com/in/code4romania/ - +[3.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_instagram.png -:romania: Un cutremur în București nu este o situație ipotetică. -Este o certitudine că acest lucru se va întâmpla. -În acest context, la mai bine de 40 de ani de la cutremurul din 1977, memoria colectivă a ascuns în profunzime amintirile acelui dezastru în încercarea de a-și înăbuși teama. -Dar realitatea este că, patru decenii mai târziu, Bucureștiul, la fel ca restul orașelor cu risc seismic ridicat, nu ar face față unui asemenea eveniment, iar pierderile de vieți omenești ar fi uriașe. -[Exercițiul Seism 2018](https://www.news.ro/social/exercitiul-seism-2018-cel-mai-recent-bilant-al-cutremurului-simulat-indica-peste-3-900-de-morti-peste-7-000-de-raniti-si-peste-2-300-de-persoane-disparute-1922405315222018102018579831) derulat de DSU arată că cel puţin 4.587 persoane şi-ar pierde viaţa, iar 8.585 ar fost rănite, 6 spitale vor fi distruse, 23 de unităţi spitaliceşti distruse parţial, iar 9 avariate, dar funcţionale. -O estimare, am spune noi, destul de optimistă. +[3]: https://instagram.com/code4romania/ -Ce putem face pentru a deveni mai puțin vulnerabili? -Să știm totul despre oraș, despre clădirile în care locuim astfel încât să putem cere consolidarea lor. -Bulina Roșie nu este doar "un nou site de informare", ci o platformă care colectează și validează apoi cu experți date despre clădirile din România, la nivel național, ajută asociațiile de proprietari să își consolideze clădirile, te ține la curent cu legislația și ți-o explică și are grijă să ai la îndemână informații utile la orice moment. +[4.1]: https://raw.githubusercontent.com/code4romania/.github/main/social_icons/social_img_linkedin.png -:gb: An earthquake in Bucharest is not a hypothetical situation. -It is certain that this will happen. -In this context, after more than 40 years from the 1977 earthquake, the collective memory has hidden deep the memories of that disaster in its attempt of stifling its fear. -The reality is that, four decades later, Bucharest, as well as the rest of the cities with a high seismic risk, would not stand up tu such an event, and the loss of life would be tremendous. -[The Earthquake 2018 Exercise](https://www.romania-insider.com/seism-2018-exercise-bucharest) conducted by the DSU shows that at least 4,587 people would have died and 8,585 would have been injured, 6 hospitals would be destroyed, 23 more would be partially destroyed, and 9 would be damaged, though still functional. -An estimation that we would consider quite optimistic. +[4]: https://linkedin.com/in/code4romania/ -What can we do to become less vulnerable? -Find out everything about the city, about the buildings in which we live so that we can ask for their consolidation. -Bulina Roșie is not just "a new information site", but a platform that collects and then validates with the help of experts data about the buildings in Romania, at a national level, it helps owners associations to consolidate their buildings, it keeps you in touch with the current legislation and explains it to you, and it makes sure that you have useful information at your disposal at all times. + + +:romania: Un cutremur în București nu este o situație ipotetică. Este o certitudine că acest lucru se va întâmpla. În +acest context, la mai bine de 40 de ani de la cutremurul din 1977, memoria colectivă a ascuns în profunzime amintirile +acelui dezastru în încercarea de a-și înăbuși teama. Dar realitatea este că, patru decenii mai târziu, Bucureștiul, la +fel ca restul orașelor cu risc seismic ridicat, nu ar face față unui asemenea eveniment, iar pierderile de vieți +omenești ar fi uriașe. +[Exercițiul Seism 2018](https://www.news.ro/social/exercitiul-seism-2018-cel-mai-recent-bilant-al-cutremurului-simulat-indica-peste-3-900-de-morti-peste-7-000-de-raniti-si-peste-2-300-de-persoane-disparute-1922405315222018102018579831) +derulat de DSU arată că cel puţin 4.587 persoane şi-ar pierde viaţa, iar 8.585 ar fost rănite, 6 spitale vor fi +distruse, 23 de unităţi spitaliceşti distruse parţial, iar 9 avariate, dar funcţionale. O estimare, am spune noi, destul +de optimistă. + +Ce putem face pentru a deveni mai puțin vulnerabili? Să știm totul despre oraș, despre clădirile în care locuim astfel +încât să putem cere consolidarea lor. Acasă în Siguranță nu este doar "un nou site de informare", ci o platformă care +colectează și validează apoi cu experți date despre clădirile din România, la nivel național, ajută asociațiile de +proprietari să își consolideze clădirile, te ține la curent cu legislația și ți-o explică și are grijă să ai la îndemână +informații utile la orice moment. + +:gb: An earthquake in Bucharest is not a hypothetical situation. It is certain that this will happen. In this context, +after more than 40 years from the 1977 earthquake, the collective memory has hidden deep the memories of that disaster +in its attempt of stifling its fear. The reality is that, four decades later, Bucharest, as well as the rest of the +cities with a high seismic risk, would not stand up tu such an event, and the loss of life would be tremendous. +[The Earthquake 2018 Exercise](https://www.romania-insider.com/seism-2018-exercise-bucharest) conducted by the DSU shows +that at least 4,587 people would have died and 8,585 would have been injured, 6 hospitals would be destroyed, 23 more +would be partially destroyed, and 9 would be damaged, though still functional. An estimation that we would consider +quite optimistic. + +What can we do to become less vulnerable? Find out everything about the city, about the buildings in which we live so +that we can ask for their consolidation. Home Safe is not just "a new information site", but a platform that collects +and then validates with the help of experts data about the buildings in Romania, at a national level, it helps owners +associations to consolidate their buildings, it keeps you in touch with the current legislation and explains it to you, +and it makes sure that you have useful information at your disposal at all times. **Let's save lives together.**
- TABLE OF CONTENTS - -- [Bulina Roșie](#bulina-roșie) - - [Contributing](#contributing) - - [Built With](#built-with) - - [Programming languages](#programming-languages) - - [Frameworks](#frameworks) - - [Package managers](#package-managers) - - [Code styling](#code-styling) - - [Database technology & provider](#database-technology--provider) - - [Getting started](#getting-started) - - [Pre-requisites](#pre-requisites) - - [Initial set-up](#initial-set-up) - - [External services API keys](#external-services-api-keys) - - [Starting the project](#starting-the-project) - - [Starting the project without docker](#starting-the-project-without-docker) - - [Development](#development) - - [Known Issues](#known-issues) - - [Management Commands](#management-commands) - - [Testing](#testing) - - [Production](#production) - - [Client Deployment](#client-deployment) - - [Feedback](#feedback) - - [License](#license) - - [About Code4Ro](#about-code4ro) + TABLE OF CONTENTS (click to expand) + + +* [Acasă în Siguranță](#acasă-în-siguranță) + * [Contributing](#contributing) + * [Built With](#built-with) + * [Programming languages](#programming-languages) + * [Frameworks](#frameworks) + * [Package managers](#package-managers) + * [Code styling](#code-styling) + * [Database technology & provider](#database-technology--provider) + * [Getting started](#getting-started) + * [Pre-requisites](#pre-requisites) + * [Initial set-up](#initial-set-up) + * [Initialising all the services](#initialising-all-the-services) + * [Backing up and restoring the database in case of an upgrade](#backing-up-and-restoring-the-database-in-case-of-an-upgrade) + * [Environment variables](#environment-variables) + * [Deployment variables](#deployment-variables) + * [External services API keys](#external-services-api-keys) + * [HERE Maps API Key](#here-maps-api-key) + * [hCAPTCHA API Key](#hcaptcha-api-key) + * [Starting the project](#starting-the-project) + * [Starting the project without docker](#starting-the-project-without-docker) + * [Windows platform](#windows-platform) + * [Prerequisites](#prerequisites) + * [Steps to set your environment](#steps-to-set-your-environment) + * [Steps needed to start development servers](#steps-needed-to-start-development-servers) + * [Development](#development) + * [Known Issues](#known-issues) + * [Client hot-reload on Windows Docker is not working](#client-hot-reload-on-windows-docker-is-not-working) + * [In VS Code, ESLint fails to load the Prettier plugin](#in-vs-code-eslint-fails-to-load-the-prettier-plugin) + * [Management Commands](#management-commands) + * [Testing](#testing) + * [Production](#production) + * [Client Deployment](#client-deployment) + * [Feedback](#feedback) + * [License](#license) + * [About Code4Ro](#about-code4ro) +
- ## Contributing -If you would like to contribute to one of our repositories, first identify the scale of what you would like to contribute. If it is small (grammar/spelling, or a bug fix) feel free to start working on a fix. If you are submitting a feature or substantial code contribution, please discuss it with the team and ensure it follows the product roadmap. +If you would like to contribute to one of our repositories, first identify the scale of what you would like to +contribute. If it is small (grammar/spelling, or a bug fix) feel free to start working on a fix. If you are submitting a +feature or substantial code contribution, please discuss it with the team and ensure it follows the product roadmap. -Our collaboration model [is described here](https://github.com/code4romania/.github/blob/main/CONTRIBUTING.md). **And make sure you check the [workflow document](https://github.com/code4romania/.github/blob/main/WORKFLOW.md)**; it helps you keep your environment in a good shape, and it helps everyone move faster with code reviews. If you want to make any change to this repository, please **make a fork first**. +Our collaboration model [is described here](https://github.com/code4romania/.github/blob/main/CONTRIBUTING.md). +**And make sure you check the [workflow document](https://github.com/code4romania/.github/blob/main/WORKFLOW.md)**; +it helps you keep your environment in a good shape, and it helps everyone move faster with code reviews. +If you want to make any change to this repository, please **make a fork first**. -We don't have a specific set of coding guidelines, so just follow the way the code was written until now, if in doubt, you can use [Google's style guide](http://google.github.io/styleguide/pyguide.html). +We don't have a specific set of coding guidelines, so just follow the way the code was written until now, if in doubt, +you can use [Google's style guide](http://google.github.io/styleguide/pyguide.html). ## Built With @@ -116,23 +149,25 @@ We don't have a specific set of coding guidelines, so just follow the way the co ## Getting started -Risc Seismic API is a Django application, built on top of Python 3.7+ with a PostgreSQL database, while the Client is a React single page application. +Risc Seismic API is a Django application, built on top of Python 3.9+ with a PostgreSQL database. The Client is a React +single page application. ### Pre-requisites -In order to run the project locally, you need to have [Docker](https://docs.docker.com/install/) and [docker-compose](https://docs.docker.com/compose/overview/) installed. +In order to run the project locally, you need to have [Docker](https://docs.docker.com/install/) +and [docker-compose](https://docs.docker.com/compose/overview/) installed. -You can install the above mentioned packages manually, or you can use our helper commands. +You can install the above-mentioned packages manually, or you can use our helper commands. -On `Ubuntu 18.04+` run: +On `Ubuntu` run: -```shell script +```shell make install-docker-ubuntu ``` On `MacOS` run: -```shell script +```shell make install-docker-osx ``` @@ -141,30 +176,86 @@ On other platforms please follow the instructions described here: - - -The Docker versions the Makefile was tested with are: +### Initial set-up + +#### Initialising all the services + +Make sure to check the [Environment variables](#environment-variables) +section for info on how to set up the keys before you run the following commands: -```shell script -$ docker --version -Docker version 19.03.5, build 633a0ea -$ docker-compose --version -docker-compose version 1.24.1, build 4667896b +```shell +cp .env.example.dev .env.dev +# build the development container +make build-dev ``` -### Initial set-up +If you didn't set up the `RUN_LOAD_INITIAL_DATA` variable, you can add dummy data to the database with the following command: + +```shell +make build-dev +``` -Initialise the database and development fixtures: +If the `RUN_LOAD_INITIAL_DATA` was `yes`, then you should have dummy data but will have to create a superuser: -```shell script -make init-env +```shell +docker-compose exec api ./manage.py createsuperuser ``` -### External services API keys +#### Backing up and restoring the database in case of an upgrade -In order to have a fully functional project, you have to get two API keys: HERE Maps API Key and hCAPTCHA API Key. +1. Create a back-up of the data + (the `build` folder is ignored by git) -#### HERE Maps API Key + ```shell + docker-compose exec db pg_dumpall -U postgres > ./build/backup.sql + ``` -Tutorial: [https://developer.here.com/tutorials/getting-here-credentials/]() +2. Run the database upgrade or just get the latest version of the code from git if it upgrades the database + + ```shell + git pull upstream develop + ``` + +3. Remove the current database and start-up the environment + (remove the `-dev` part if you don't want the development mode) + + ```shell + make drop-db && make build-dev + ``` + +4. Restore the backed-up data to the new database + + ```shell + docker-compose exec db psql -U postgres < ./build/backup.sql + ``` + +5. Check the API endpoints and that you can log in the admin interface with the same users as before + +### Environment variables + +#### Deployment variables + +The following variables change the way the API is deployed. + +`RUN_MIGRATION` +Run the initial migrations (sets up the data models from the database). + +`RUN_LOAD_INITIAL_DATA` +Adds real & dummy data to the database (adds buildings, datafiles, and statistics). + +`RUN_COLLECT_STATIC` +Collects static files so that they can be easily served to production. + +`RUN_DEV_SERVER` +Runs the application in the development mode. + +#### External services API keys + +To have a fully functional project, you have to get two API keys: HERE Maps API Key and hCAPTCHA API Key. + +##### HERE Maps API Key + +Tutorial: [https://developer.here.com/tutorials/getting-here-credentials/](https://developer.here.com/tutorials/getting-here-credentials/) Keys added to the `.env` file: @@ -174,11 +265,11 @@ HERE_MAPS_API_KEY REACT_APP_HERE_MAPS_API_KEY ``` -#### hCAPTCHA API Key +##### hCAPTCHA API Key 1. [Create a hCAPTCHA account](https://dashboard.hcaptcha.com/signup) -1. Go to [your settings page](https://dashboard.hcaptcha.com/settings) -1. Add a new key and add it to the environment variables list +2. Go to [your settings page](https://dashboard.hcaptcha.com/settings) +3. Create a New Site, copy the Site Key and add it to the environment variables list Keys added to the `.env` file: @@ -188,126 +279,151 @@ REACT_APP_CAPTCHA_API_KEY ### Starting the project -First check the `.env` file created by the init command and see if there are any environment variables that you might need to provide or change. This file is used by `docker-compose` to pass the environment variables to the container it creates. +First check the `.env` file created by the init command and see if there are any environment variables that you might +need to provide or change. This file is used by `docker-compose` to pass the environment variables to the container it +creates. Get the project up and running: -```shell script +```shell docker-compose up ``` You should be able to access the local environment site and admin at the following URLs: -- -- +- +- -If you have problems starting the project, first check out the [FAQ](https://github.com/code4romania/seismic-risc/wiki/FAQ) and if that doesn't work, ask someone from the project's channel. -Maybe the issue you just had is worth adding to the [FAQ](https://github.com/code4romania/seismic-risc/wiki/FAQ), wouldn't it? +If you have problems starting the project, first check out +the [FAQ](https://github.com/code4romania/seismic-risc/wiki/FAQ) and if that doesn't work, ask someone from the +project's channel. Maybe the issue you just had is worth adding to +the [FAQ](https://github.com/code4romania/seismic-risc/wiki/FAQ), wouldn't it? To work on running containers that were started using `docker-compose up`, open another terminal and: -```shell script +```shell cd path/to/repo -docker-compose exec api bash +docker-compose exec api some_container_command # or -docker-compose exec client bash +docker-compose exec client some_container_command ``` -In order to see all available commands run: +To see all available commands, run: -```shell script -make +```shell +make help ``` -### Starting the project without docker +### Starting the project without Docker #### Windows platform + ##### Prerequisites + 1. [PostgreSQL](https://www.enterprisedb.com/postgresql-tutorial-resources-training?cid=55) -2. [Python 3.7](https://www.python.org/ftp/python/3.7.9/python-3.7.9-amd64.exe) +2. [Python 3.9](https://www.python.org/downloads/release/python-399/) 3. [Node.js](https://nodejs.org/dist/v14.16.0/node-v14.16.0-x64.msi) ##### Steps to set your environment -1. In project directory run: -```shell -python -m venv .venv -.venv\Scripts\activate.bat -pip install -r ./api/requirements-dev.txt -copy .env.dist .env -``` -2. Check the .env file created by the copy command and see if there are any environment variables that you might need to provide or change. Double check database config line in .env. It has to follow this pattern: `postgres://USER:PASSWORD@HOST:PORT/NAME` +1. In project directory run: -3. Run following in order to set needed environment variables: -```shell -activate_dev_env.bat -``` + ```shell + python -m venv .venv + .venv\Scripts\activate.bat + pip install -r ./api/requirements-dev.txt + copy .env.dev .env + ``` + +2. Check the .env file created by the copy command and see if there are any environment variables that you might need to + provide or change. Double check database config line in .env. It has to follow this + pattern: `postgres://USER:PASSWORD@HOST:PORT/NAME` + +3. Run following to set the needed environment variables: + + ```shell + activate_dev_env.bat + ``` 4. Check database connection. If this fails double check database configuration. -```shell -python api/wait_for_db.py -``` + + ```shell + python api/wait_for_db.py + ``` 5. Run migrations: -```shell -python api/manage.py migrate --noinput -``` -6. Create admin user (user to login into admin pannel): -```shell -python api/manage.py createsuperuser -``` + ```shell + python api/manage.py migrate --no-input + ``` + +6. Create admin user (user to login into admin panel): + + ```shell + python api/manage.py createsuperuser + ``` 7. Load dummy data in database: -```shell -python api/manage.py loaddata buildings -python api/manage.py loaddata pages -``` + + ```shell + python api/manage.py loaddata statistics + python api/manage.py loaddata buildings + python api/manage.py loaddata pages + ``` 8. Install node modules. -```shell -cd client -npm install -``` + + ```shell + cd client + npm install + ``` + #### Steps needed to start development servers + *1. Start API server.* -Open terminal in project direcotry and run environment activation script, then -start the server. +Open terminal in the project directory and run environment activation script, then start the server. + ```shell .venv\Scripts\activate.bat activate_dev_env.bat -python api\manage.py runserver 0.0.0.0:8000 +python api\manage.py runserver 0.0.0.0:8030 ``` -Check functionality at http://localhost:8000 you shoul get 404 page. +Check functionality at http://localhost:8030 you should get a 404 page. *2. Start front-end server.* -Open terminal in project direcotry and run environment activation script, then -start the server. +Open terminal in the project directory and run environment activation script, then start the server. + ```shell activate_dev_env.bat cd client npm start ``` + Check functionality at http://localhost:3000. ### Development -When creating new models in Django, in order to make sure they are generated in a clean environment, it is recommended to generate the migration files using the `make` command: +When creating new models in Django, to make sure they are generated in a clean environment, it is recommended +to generate the migration files using the `make` command: -```shell script +```shell make makemigrations && make migrate ``` -When you need to add/remove requirements or restrict the version of a requirement, edit the `requirements.in` (prod) and the `requirements-dev.in` (dev) files accordingly. After doing this run: +When you need to add/remove requirements or restrict the version of a requirement, edit the `requirements.in` (prod) and +the `requirements-dev.in` (dev) files accordingly. After doing this run: -```shell script +```shell make update-requirements ``` -This will create a clean environment where it uses the [pip-tools](https://github.com/jazzband/pip-tools/) library to compile the corresponding `requirements.txt` files with the versions of the packages pinned. This is important as it guarantees that every environment this service runs in, has the same dependencies installed and minimizes the risk of `works on my machine`. +This will create a clean environment where it uses the [pip-tools](https://github.com/jazzband/pip-tools/) library to +compile the corresponding `requirements.txt` files with the versions of the packages pinned. This is important as it +guarantees that every environment this service runs in, has the same dependencies installed and minimizes the risk +of `works on my machine`. ### Known Issues @@ -320,7 +436,7 @@ Try following these steps: 3. `vi webpackDevServer.config.js` 4. on the exported config object, update the value of `watchOptions` to include the following properties: - ```shell script + ```shell aggregateTimeout: 100, poll: 500 ``` @@ -335,11 +451,11 @@ Add the following option to user settings in VS Code if ESLint fails to load the ```json { - "eslint.workingDirectories": [ - { - "mode": "auto" - } - ] + "eslint.workingDirectories": [ + { + "mode": "auto" + } + ] } ``` @@ -352,7 +468,7 @@ required arguments: - --delete - --create -```shell script +```shell cd path/to/repo docker-compose exec api bash root@ba4fd81f9023:/code# python manage.py buildings 30 --create @@ -366,7 +482,7 @@ Successfully deleted 25 buildings. Local development testing: -```shell script +```shell cd path/to/repo docker-compose exec api bash root@3c5df91778ad:/code# pytest @@ -374,33 +490,34 @@ root@3c5df91778ad:/code# pytest Pipeline testing: -```shell script +```shell make test ``` ## Production -In order to get the container ready for production use we need to first build it: +To get the container ready for production use, we need to first build it: -```shell script +```shell docker build -t seismic-risc:latest ./api ``` -Use the `prod.env.dist` template file and create a `prod.env` file with the correct environment variables and run like so: +Use the `prod.env.dist` template file and create a `prod.env` file with the correct environment variables and run like +so: -```shell script +```shell docker run --env-file prod.env -p HOST_PORT:GUNICORN_PORT seismic-risc:latest ``` Or, you can provide all the environment variables at runtime: -```shell script +```shell docker run -e DJANGO_CONFIGURATION=Prod -e DJANGO_SECRET_KEY= -e DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME -e GUNICORN_PORT=5000 -e GUNICORN_WORKERS=2 -p HOST_PORT:GUNICORN_PORT seismic-risc:latest ``` -After testing the container runs properly, tag and upload the image to Docker hub: +After testing the container runs properly, tag and upload the self to Docker hub: -```shell script +```shell docker tag seismic-risc:latest code4romania/seismic-risc:latest docker push code4romania/seismic-risc:latest ``` @@ -422,10 +539,16 @@ docker push code4romania/seismic-risc:latest ## License -This project is licensed under the MPL 2.0 License - see the [LICENSE](LICENSE) file for details +This project is licensed under the MPL 2.0 License — see the [LICENSE](LICENSE) file for details ## About Code4Ro -Started in 2016, Code for Romania is a civic tech NGO, official member of the Code for All network. We have a community of over 500 volunteers (developers, ux/ui, communications, data scientists, graphic designers, devops, IT security and more) who work pro-bono for developing digital solutions to solve social problems. #techforsocialgood. If you want to learn more details about our projects [visit our site](https://www.code4.ro/en/) or if you want to talk to one of our staff members, please e-mail us at contact@code4.ro. +Started in 2016, Code for Romania is a civic tech NGO, official member of the Code for All network. We have a community +of over 500 volunteers (developers, UX/UI, communications, data scientists, graphic designers, devops, IT security, and +more) who work pro bono for developing digital solutions to solve social problems. #techforsocialgood. If you want to +learn more details about our projects [visit our site](https://www.code4.ro/en/) or if you want to talk to one of our +staff members, please e-mail us at contact@code4.ro. -Last, but not least, we rely on donations to ensure the infrastructure, logistics and management of our community that is widely spread across 11 timezones, coding for social change to make Romania and the world a better place. If you want to support us, [you can do it here](https://code4.ro/en/donate/). +Last, but not least, we rely on donations to ensure the infrastructure, logistics and management of our community that +is widely spread across 11 timezones, coding for social change to make Romania and the world a better place. If you want +to support us, [you can do it here](https://code4.ro/en/donate/). diff --git a/api/.dockerignore b/api/.dockerignore index c959f12e..0f28a765 100644 --- a/api/.dockerignore +++ b/api/.dockerignore @@ -3,4 +3,3 @@ requirements-dev.in requirements.in setup.cfg wait_for_db.py -.gitignore diff --git a/api/Dockerfile b/api/Dockerfile deleted file mode 100644 index 09b4e6f5..00000000 --- a/api/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM python:3.7-slim - -ARG DEVBUILD - -RUN apt-get update && \ - apt-get install -y --no-install-recommends \ - build-essential \ - postgresql-client \ - libpq-dev \ - gettext - -RUN pip install pip -U - -WORKDIR /code -COPY . /code - -RUN pip install -r requirements.txt - -# The dev requirements should be installed only if a DEVBUILD variable is -# passed to the docker build command. This should allow easy building of -# the production container image. -RUN if [ ! -z "${DEVBUILD}" ]; then pip install -r requirements-dev.txt; fi - -ENTRYPOINT ["bash", "-c"] - -CMD ["./start_gunicorn.sh"] diff --git a/api/README.md b/api/README.md deleted file mode 100644 index f7fbb200..00000000 --- a/api/README.md +++ /dev/null @@ -1,96 +0,0 @@ -# API - -## Buildings - -- `GET` `/api/v1/buildings/` - -```json -[ - { - "general_id": 75, - "risk_category": "U1", - ... - }, - { - "general_id": 74, - "risk_category": "U3", - ... - }, - ... -] -``` - -- `GET` `/api/v1/buildings/75/` - -```json -{ - "general_id": 75, - "risk_category": "U1", - "registration_number": 13, - "examination_year": 2011, - "certified_expert": "George Marian", - "observations": "Observatie despre cladirea B", - "lat": 44.34556, - "lng": 26.206, - "county": "Bucuresti", - "address": "Grigore Cobalcescu", - "street_number": "401", - "locality": "2", - "year_built": 1901, - "height_regime": "S+P+4E", - "apartment_count": 2, - "surface": 300.0, - "cadastre_number": 222, - "land_registry_number": "333", - "administration_update": "2015-01-01", - "admin_update": "2015-01-01", - "status": 0, - "created_on": "2019-11-23T11:58:07.385102Z" -} -``` - -- `PATCH` `/api/v1/buildings/75/` - update only some fields - -```json -{ - "certified_expert": "Temistocle Popa" -} -``` - -- `DELETE` `/api/v1/buildings/75/` - - -## Pages - -- `GET` `/api/v1/pages/` - -```json -[ - { - "id": 12, - "title": "Page Title", - "slug": "page1", - "content": "

Conteeents

", - "updated_on": "2019-12-14T10:14:54.781918Z", - "publishing_date": null, - "is_published": true, - "category": null - }, - ... -] -``` - -- `GET` `/api/v1/pages/page1-slug/` - -```json -{ - "id": 12, - "title": "Page Title", - "slug": "page1-slug", - "content": "

Conteeents

", - "updated_on": "2019-12-14T10:14:54.781918Z", - "publishing_date": null, - "is_published": true, - "category": null -} -``` diff --git a/api/blog/__init__.py b/api/blog/__init__.py deleted file mode 100644 index 0519ecba..00000000 --- a/api/blog/__init__.py +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/api/blog/admin.py b/api/blog/admin.py deleted file mode 100644 index dc64aa93..00000000 --- a/api/blog/admin.py +++ /dev/null @@ -1,29 +0,0 @@ -from django.contrib import admin - -from .models import Post - - -class PostAdmin(admin.ModelAdmin): - prepopulated_fields = {"slug": ("title",)} - list_display = ("title", "slug", "created", "published", "is_visible") - fieldsets = [ - ( - None, - { - "fields": ( - "author", - "title", - "slug", - "image", - "tags", - "published", - "is_visible", - ) - }, - ), - ("Preview", {"classes": ("full-width",), "fields": ("preview_text",)}), - ("Text", {"classes": ("full-width",), "fields": ("text",)}), - ] - - -admin.site.register(Post, PostAdmin) diff --git a/api/blog/apps.py b/api/blog/apps.py deleted file mode 100644 index b12b9ea8..00000000 --- a/api/blog/apps.py +++ /dev/null @@ -1,7 +0,0 @@ -from django.apps import AppConfig -from django.utils.translation import gettext_lazy as _ - - -class BlogConfig(AppConfig): - name = "blog" - verbose_name = _("Blog") diff --git a/api/blog/migrations/0001_initial.py b/api/blog/migrations/0001_initial.py deleted file mode 100644 index b5ac42b4..00000000 --- a/api/blog/migrations/0001_initial.py +++ /dev/null @@ -1,36 +0,0 @@ -# Generated by Django 2.2.9 on 2020-01-08 08:21 - -import ckeditor_uploader.fields -from django.conf import settings -from django.db import migrations, models -import django.db.models.deletion -import taggit.managers - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ('taggit', '0003_taggeditem_add_unique_index'), - migrations.swappable_dependency(settings.AUTH_USER_MODEL), - ] - - operations = [ - migrations.CreateModel( - name='Post', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('title', models.CharField(max_length=200)), - ('slug', models.SlugField(unique=True)), - ('image', models.ImageField(upload_to='blog/')), - ('text', ckeditor_uploader.fields.RichTextUploadingField()), - ('is_visible', models.BooleanField(default=False)), - ('published', models.DateTimeField(blank=True, null=True)), - ('created', models.DateTimeField(auto_now_add=True)), - ('updated', models.DateTimeField(auto_now=True)), - ('author', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL)), - ('tags', taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags')), - ], - ), - ] diff --git a/api/blog/migrations/0002_auto_20200229_1302.py b/api/blog/migrations/0002_auto_20200229_1302.py deleted file mode 100644 index 233d1a68..00000000 --- a/api/blog/migrations/0002_auto_20200229_1302.py +++ /dev/null @@ -1,71 +0,0 @@ -# Generated by Django 2.2.10 on 2020-02-29 13:02 - -import ckeditor_uploader.fields -from django.conf import settings -from django.db import migrations, models -import django.db.models.deletion -import taggit.managers - - -class Migration(migrations.Migration): - - dependencies = [ - ('blog', '0001_initial'), - ] - - operations = [ - migrations.AlterModelOptions( - name='post', - options={'verbose_name': 'post', 'verbose_name_plural': 'posts'}, - ), - migrations.AlterField( - model_name='post', - name='author', - field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL, verbose_name='post'), - ), - migrations.AlterField( - model_name='post', - name='created', - field=models.DateTimeField(auto_now_add=True, verbose_name='created'), - ), - migrations.AlterField( - model_name='post', - name='image', - field=models.ImageField(upload_to='blog/', verbose_name='image'), - ), - migrations.AlterField( - model_name='post', - name='is_visible', - field=models.BooleanField(default=False, verbose_name='is visible'), - ), - migrations.AlterField( - model_name='post', - name='published', - field=models.DateTimeField(blank=True, null=True, verbose_name='published'), - ), - migrations.AlterField( - model_name='post', - name='slug', - field=models.SlugField(unique=True, verbose_name='slug'), - ), - migrations.AlterField( - model_name='post', - name='tags', - field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='tags'), - ), - migrations.AlterField( - model_name='post', - name='text', - field=ckeditor_uploader.fields.RichTextUploadingField(verbose_name='text'), - ), - migrations.AlterField( - model_name='post', - name='title', - field=models.CharField(max_length=200, verbose_name='title'), - ), - migrations.AlterField( - model_name='post', - name='updated', - field=models.DateTimeField(auto_now=True, verbose_name='updated'), - ), - ] diff --git a/api/blog/migrations/0003_post_preview_text.py b/api/blog/migrations/0003_post_preview_text.py deleted file mode 100644 index 623c9fe1..00000000 --- a/api/blog/migrations/0003_post_preview_text.py +++ /dev/null @@ -1,19 +0,0 @@ -# Generated by Django 2.2.18 on 2021-03-02 16:02 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('blog', '0002_auto_20200229_1302'), - ] - - operations = [ - migrations.AddField( - model_name='post', - name='preview_text', - field=models.CharField(default='', max_length=300, verbose_name='preview text'), - preserve_default=False, - ), - ] diff --git a/api/blog/models.py b/api/blog/models.py deleted file mode 100644 index 5927bdea..00000000 --- a/api/blog/models.py +++ /dev/null @@ -1,31 +0,0 @@ -from django.db import models -from django.utils.translation import gettext_lazy as _ - -from taggit.managers import TaggableManager -from ckeditor_uploader.fields import RichTextUploadingField - - -class Post(models.Model): - author = models.ForeignKey("auth.User", on_delete=models.PROTECT, verbose_name=_("post")) - title = models.CharField(_("title"), max_length=200) - slug = models.SlugField(_("slug"), unique=True) - image = models.ImageField(_("image"), upload_to="blog/") - preview_text = models.CharField(_("preview text"), max_length=300) - text = RichTextUploadingField(_("text")) - tags = TaggableManager(_("tags")) - is_visible = models.BooleanField(_("is visible"), default=False) - published = models.DateTimeField(_("published"), blank=True, null=True) - created = models.DateTimeField(_("created"), auto_now_add=True) - updated = models.DateTimeField(_("updated"), auto_now=True) - - def get_absolute_url(self): - from django.urls import reverse - - return reverse("post_detail", args=[self.slug]) - - def __str__(self): - return self.title - - class Meta: - verbose_name = _("post") - verbose_name_plural = _("posts") diff --git a/api/blog/permissions.py b/api/blog/permissions.py deleted file mode 100644 index 0596a5e4..00000000 --- a/api/blog/permissions.py +++ /dev/null @@ -1,14 +0,0 @@ -from rest_framework import permissions - - -class IsUserOrReadOnly(permissions.BasePermission): - """ - Object-level permission to only allow owners of an object to edit it. - """ - - def has_object_permission(self, request, view, obj): - - if request.method in permissions.SAFE_METHODS: - return True - - return obj == request.user diff --git a/api/blog/serializers.py b/api/blog/serializers.py deleted file mode 100644 index e8588f6a..00000000 --- a/api/blog/serializers.py +++ /dev/null @@ -1,36 +0,0 @@ -from rest_framework import serializers -from taggit_serializer.serializers import ( - TagListSerializerField, - TaggitSerializer, -) -from taggit.models import Tag -from .models import Post - - -class TagSerializer(serializers.HyperlinkedModelSerializer): - class Meta: - model = Tag - fields = ("name", "slug") - - -class PostSerializer(TaggitSerializer, serializers.ModelSerializer): - tags = TagListSerializerField() - author_first_name = serializers.ReadOnlyField(source="author.first_name") - author_last_name = serializers.ReadOnlyField(source="author.last_name") - - class Meta: - model = Post - fields = [ - "author_first_name", - "author_last_name", - "title", - "slug", - "image", - "text", - "preview_text", - "tags", - "published", - "created", - "updated", - ] - extra_kwargs = {"url": {"lookup_field": "slug"}} diff --git a/api/blog/views.py b/api/blog/views.py deleted file mode 100644 index 61b9f0e3..00000000 --- a/api/blog/views.py +++ /dev/null @@ -1,52 +0,0 @@ -from django.utils import timezone -from .serializers import PostSerializer, TagSerializer -from .permissions import IsUserOrReadOnly -from rest_framework import viewsets, filters, pagination -from taggit.models import Tag - -from .models import Post - - -class TagViewSet(viewsets.ModelViewSet): - """ - API endpoint that lists blog posts tags - """ - - lookup_field = "slug" - permissions_classes = (IsUserOrReadOnly,) - queryset = Tag.objects.all() - serializer_class = TagSerializer - - -class PostsPagination(pagination.LimitOffsetPagination): - default_limit = 4 - max_limit = 10 - - -class PostViewSet(viewsets.ModelViewSet): - """ - API endpoint that lists blog posts - """ - - permissions_classes = (IsUserOrReadOnly,) - serializer_class = PostSerializer - pagination_class = PostsPagination - lookup_field = "slug" - filter_backends = [filters.SearchFilter, filters.OrderingFilter] - search_fields = [ - "title", - "text", - "^author__username", - "author__first_name", - "author__last_name", - "tags__name", - ] - ordering_fields = ["created", "updated", "published"] - - def get_queryset(self): - return ( - Post.objects.all() - .select_related("author") - .filter(published__lte=timezone.localtime(), is_visible=True) - .order_by("-published") - ) diff --git a/api/buildings/__init__.py b/api/buildings/__init__.py index 0519ecba..e69de29b 100644 --- a/api/buildings/__init__.py +++ b/api/buildings/__init__.py @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/api/buildings/admin.py b/api/buildings/admin.py index cccb0bde..6cf8f13e 100644 --- a/api/buildings/admin.py +++ b/api/buildings/admin.py @@ -1,13 +1,18 @@ +import os +from copy import deepcopy from zipfile import BadZipFile import tablib from django.conf import settings from django.contrib import admin, messages +from django.contrib.admin import display +from django.utils.safestring import mark_safe from django.utils.translation import gettext_lazy as _ from django.utils.translation import ngettext from import_export import resources from buildings import models +from buildings.models import ImageFile class BuildingWorkPerformedInline(admin.TabularInline): @@ -15,8 +20,16 @@ class BuildingWorkPerformedInline(admin.TabularInline): extra = 1 +class ImageInline(admin.TabularInline): + model = models.ImageFile + max_num = settings.ALLOWED_IMAGES_LIMIT + extra = 1 + + @admin.register(models.Statistic) class StatisticAdmin(admin.ModelAdmin): + readonly_fields = ("people_under_risk", "evaluated_buildings", "consolidated_buildings") + def has_add_permission(self, request): base_add_permission = super(StatisticAdmin, self).has_add_permission(request) if base_add_permission: @@ -26,6 +39,55 @@ def has_add_permission(self, request): return False +@admin.register(models.ImageFile) +class ImageAdmin(admin.ModelAdmin): + list_display = ("image_name", "image_thumb", "status") + + actions = ( + "make_pending", + "make_accepted", + "make_rejected", + ) + + def make_pending(self, request, queryset): + self._perform_status_change(request, queryset, "0") + + make_pending.short_description = _("Mark selected images as pending") + + def make_accepted(self, request, queryset): + self._perform_status_change(request, queryset, "1") + + make_accepted.short_description = _("Mark selected images as accepted") + + def make_rejected(self, request, queryset): + self._perform_status_change(request, queryset, "-1") + + make_rejected.short_description = _("Mark selected images as rejected") + + @staticmethod + def choice_to_string(status): + status = int(status) + for status_choice in models.Building.BUILDING_STATUS_CHOICES: + if status_choice[0] == status: + status_str = status_choice[1] + break + else: + status_str = "" + return status_str + + def _perform_status_change(self, request, queryset, status): + updated = queryset.update(status=status) + + status_str = self.choice_to_string(status) + message = ngettext( + "{updated} image was successfully marked as {status}.", + "{updated} images were successfully marked as {status}.", + updated, + ).format(updated=updated, status=status_str) + + self.message_user(request, message, messages.SUCCESS) + + @admin.register(models.BuildingProximalUtilities, models.BuildingWorkPerformed) class BuildingAttributes(admin.ModelAdmin): pass @@ -35,12 +97,13 @@ class BuildingAttributes(admin.ModelAdmin): class BuildingAdmin(admin.ModelAdmin): list_filter = ("status", "risk_category", "county", "locality") list_display = ( - "address", + "get_building_address", "risk_category", "examination_year", "certified_expert", "status", "general_id", + "get_images", ) search_fields = ("address",) actions = ( @@ -99,6 +162,7 @@ class BuildingAdmin(admin.ModelAdmin): "examination_year", "certified_expert", "observations", + "has_warning_panels", "year_built", "surface", "cadastre_number", @@ -110,7 +174,27 @@ class BuildingAdmin(admin.ModelAdmin): }, ), ) - inlines = (BuildingWorkPerformedInline,) + inlines = (BuildingWorkPerformedInline, ImageInline) + + @display(ordering="building__address", description=_("Address")) + def get_building_address(self, obj): + county_name = obj.county + county = settings.COUNTIES_SHORTNAME.get(county_name, county_name) + return mark_safe("{} {} ({}, {})".format(obj.address, obj.street_number, obj.locality, county)) + + @display(ordering="building__imagefile", description=_("Images")) + def get_images(self, obj): + """ + Iterate on images and produce proper html rendering + """ + if obj.images.count() > 0 and len(ImageFile.approved.all()) > 0: + image_html = '' + final_html = [] + for img in obj.images.all(): + final_html.append(image_html.format(os.path.join(settings.MEDIA_URL, str(img.image)))) + return mark_safe("".join(final_html)) + else: + return _("No associated images") def make_pending(self, request, queryset): self._perform_status_change(request, queryset, "0") @@ -155,7 +239,7 @@ class Media: "js/admin/here_map.js", ) - css = {"all": ("css/admin/location_picker.css", library_css)} + css = {"all": ("css/admin/location_picker.css", "css/admin/selector.css", library_css)} js = library_js def add_view(self, request, form_url="", extra_context=None): @@ -185,7 +269,7 @@ def changelist_view(self, request, extra_context=None): @staticmethod def choice_to_string(status): status = int(status) - for status_choice in models.Building.BUILDING_STATUS_CHOICES: + for status_choice in models.ImageFile.IMAGE_STATUS_CHOICES: if status_choice[0] == status: status_str = status_choice[1] break @@ -211,25 +295,22 @@ class Meta: verbose_name_plural = _("building resources") -@admin.register(models.CsvFile) -class CSVFileAdmin(admin.ModelAdmin): +@admin.register(models.DataFile) +class DataFileAdmin(admin.ModelAdmin): actions = ("import_files",) list_display = ("name", "status") def import_files(self, request, query_set): for q in query_set: try: - data = tablib.import_set(open(q.file.file.name, "rb").read(), format="xlsx") - changed_headers = [] - for header in data.headers: - changed_headers.append(header.lower().replace(":", "").replace(".", "").strip().replace(" ", "_")) - data.headers = changed_headers + data = self._read_file_data(q) + data = self._normalize_data_headers(data) building_res = BuildingResource() - res = building_res.import_data(data, dry_run=False, raise_errors=False, collect_failed_rows=True) - csv_file = models.CsvFile.objects.get(name=q.__str__()) + res = building_res.import_data(data, dry_run=False, raise_errors=True, collect_failed_rows=True) + data_file = models.DataFile.objects.get(name=str(q)) if res.has_errors() or res.has_validation_errors(): - csv_file.status = models.CsvFile.FAILURE + data_file.status = models.DataFile.FAILURE row_errors = [ f"error#{error[0]}: {error[1][0].error} FAILED ON ROW DATA {error[1][0].row} " f"||| TRACEBACK: {error[1][0].traceback}" @@ -237,39 +318,66 @@ def import_files(self, request, query_set): ] message_str = _( "File with name '{file_name}' wasn't imported. Errors: {row_errors}".format( - file_name=q.__str__(), row_errors=row_errors + file_name=str(q), row_errors=row_errors ) ) message_level = messages.WARNING else: - csv_file.status = models.CsvFile.SUCCESS - message_str = _("File with name '{file_name}' was imported.".format(file_name=q.__str__())) + data_file.status = models.DataFile.SUCCESS + message_str = _("File with name '{file_name}' was imported.".format(file_name=str(q))) message_level = messages.SUCCESS - csv_file.save() + data_file.save() except BadZipFile: - self.save_file_as_failed(q) + self._save_file_as_failed(q) - message_str = _("File with name '{file_name}' wasn't an XLSX.".format(file_name=q.__str__())) + message_str = _( + "File with name '{file_name}' wasn't a proper data file. Accepted formats are: CSV, XLSX.".format( + file_name=str(q) + ) + ) message_level = messages.ERROR except ValueError as e: - self.save_file_as_failed(q) + self._save_file_as_failed(q) message_str = _( "File with name '{file_name}' couldn't be imported. The error received was: `{error_args}`".format( - file_name=q.__str__(), error_args=e.args[0] + file_name=str(q), error_args=e.args[0] ) ) message_level = messages.ERROR except Exception as e: - self.save_file_as_failed(q) + self._save_file_as_failed(q) raise e self.message_user(request, message_str, message_level) @staticmethod - def save_file_as_failed(q): - csv_file = models.CsvFile.objects.get(name=q.__str__()) - csv_file.status = models.CsvFile.FAILURE + def _normalize_data_headers(data): + normalized_data = deepcopy(data) + normalized_headers = [ + header.lower().replace(":", "").replace(".", "").strip().replace(" ", "_") + for header in normalized_data.headers + ] + normalized_data.headers = normalized_headers + + return normalized_data + + @staticmethod + def _read_file_data(q): + file_name: str = q.file.file.name + file_extension: str = file_name.split(".")[-1].lower() + if file_extension == "xlsx": + data = tablib.import_set(open(file_name, "rb").read(), format="xlsx") + elif file_extension == "csv": + data = tablib.import_set(open(file_name, "r").read(), format="csv") + else: + raise BadZipFile + return data + + @staticmethod + def _save_file_as_failed(q): + csv_file = models.DataFile.objects.get(name=str(q)) + csv_file.status = models.DataFile.FAILURE csv_file.save() import_files.short_description = "Import selected files" diff --git a/api/buildings/apps.py b/api/buildings/apps.py index 3a3cedcb..36592c33 100644 --- a/api/buildings/apps.py +++ b/api/buildings/apps.py @@ -1,7 +1,23 @@ from django.apps import AppConfig +from django.db.models.signals import post_save from django.utils.translation import gettext_lazy as _ class BuildingsConfig(AppConfig): name = "buildings" verbose_name = _("Buildings") + + def ready(self): + from . import signals + + post_save.connect( + signals.refresh_cache, + dispatch_uid="refresh_cache", + sender="buildings.Building", + ) + + post_save.connect( + signals.refresh_statistics, + dispatch_uid="refresh_statistics", + sender="buildings.Building", + ) diff --git a/api/buildings/fixtures/buildings.json b/api/buildings/fixtures/buildings.json deleted file mode 100644 index 3f348953..00000000 --- a/api/buildings/fixtures/buildings.json +++ /dev/null @@ -1,152 +0,0 @@ -[ - { - "model": "buildings.building", - "pk": 70, - "fields": { - "risk_category": "RS3", - "registration_number": 2, - "lat": 44.41339, - "lng": 26.146, - "county": "Bucuresti", - "address": "Ion Florescu", - "street_number": "200", - "locality": "6", - "year_built": 1905, - "height_regime": "23", - "apartment_count": 22, - "surface": 700.0, - "examination_year": 2004, - "certified_expert": "George Marian", - "observations": "Observatie despre cladirea F", - "cadastre_number": 666, - "land_registry_number": "777", - "administration_update": "2015-01-01", - "admin_update": "2015-01-01" - } - }, - { - "model": "buildings.building", - "pk": 71, - "fields": { - "risk_category": "RS2", - "registration_number": 4, - "lat": 44.40553, - "lng": 26.186, - "county": "Bucuresti", - "address": "Ion Campineanu", - "street_number": "300", - "locality": "5", - "year_built": 1904, - "height_regime": "51", - "apartment_count": 3, - "surface": 600.0, - "examination_year": 2012, - "certified_expert": "Ion Vasile", - "observations": "Observatie despre cladirea E", - "cadastre_number": 555, - "land_registry_number": "666", - "administration_update": "2016-02-01", - "admin_update": "2019-01-01" - } - }, - { - "model": "buildings.building", - "pk": 72, - "fields": { - "risk_category": "RS1", - "registration_number": 2, - "lat": 44.42556, - "lng": 26.176, - "county": "Bucuresti", - "address": "Ioan Filitti", - "street_number": "402", - "locality": "4", - "year_built": 1903, - "height_regime": "101", - "apartment_count": 41, - "surface": 500.0, - "examination_year": 2002, - "certified_expert": "George Marian", - "observations": "Observatie despre cladirea D", - "cadastre_number": 444, - "land_registry_number": "555", - "administration_update": "2018-01-01", - "admin_update": "2015-02-01" - } - }, - { - "model": "buildings.building", - "pk": 73, - "fields": { - "risk_category": "NA", - "registration_number": 11, - "lat": 44.39556, - "lng": 26.156, - "county": "Bucuresti", - "address": "Ilarie Chendi", - "street_number": "404", - "locality": "3", - "year_built": 1902, - "height_regime": "22", - "apartment_count": 21, - "surface": 400.0, - "examination_year": 2003, - "certified_expert": "Ion Vasile", - "observations": "Observatie despre cladirea C", - "cadastre_number": 333, - "land_registry_number": "444", - "administration_update": "2019-01-01", - "admin_update": "2014-01-01" - } - }, - { - "model": "buildings.building", - "pk": 74, - "fields": { - "risk_category": "U3", - "registration_number": 12, - "lat": 44.43556, - "lng": 26.106984, - "county": "Bucuresti", - "address": "Radu Cristian", - "street_number": "500", - "locality": "1", - "year_built": 1900, - "height_regime": "100", - "apartment_count": 40, - "surface": 200.0, - "examination_year": 2001, - "certified_expert": "Ion Vasile", - "observations": "Observatie despre cladirea A", - "cadastre_number": 111, - "land_registry_number": "222", - "administration_update": "2015-01-01", - "admin_update": "2015-01-01" - } - }, - { - "model": "buildings.building", - "pk": 75, - "fields": { - "risk_category": "U1", - "registration_number": 13, - "lat": 44.34556, - "lng": 26.206, - "county": "Bucuresti", - "address": "Grigore Cobalcescu", - "street_number": "401", - "locality": "2", - "year_built": 1901, - "height_regime": "50", - "apartment_count": 2, - "surface": 300.0, - "examination_year": 2011, - "certified_expert": "George Marian", - "observations": "Observatie despre cladirea B", - "cadastre_number": 222, - "land_registry_number": "333", - "administration_update": "2015-01-01", - "admin_update": "2015-01-01" - } - } -] diff --git a/api/buildings/fixtures/buildings.yaml b/api/buildings/fixtures/buildings.yaml new file mode 100644 index 00000000..8836e256 --- /dev/null +++ b/api/buildings/fixtures/buildings.yaml @@ -0,0 +1,192006 @@ +- model: buildings.building + pk: 1 + fields: + parent_id: null + status: 1 + street_number: bl. B1 + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.68798406 + lng: 27.18462398 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 61 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Pâslaru Corneliu + observations: '' + has_warning_panels: false + year_built: 1974 + surface: 2.148 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.950000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2 + fields: + parent_id: null + status: 1 + street_number: bl. B2 + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.68799237 + lng: 27.18520026 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 64 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Pâslaru Corneliu + observations: '' + has_warning_panels: false + year_built: 1974 + surface: 2.148 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.956000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3 + fields: + parent_id: null + status: 1 + street_number: bl.A + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.6883015 + lng: 27.18458783 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Pâslaru Corneliu + observations: '' + has_warning_panels: false + year_built: 1975 + surface: 2.148 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.966000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 4 + fields: + parent_id: null + status: 1 + street_number: nr. 3 + address: Bd. Stefan cel Mare + county: Vrancea + locality: Focșani + lat: 45.698017 + lng: 27.1843879 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 64 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Pâslaru Corneliu + observations: '' + has_warning_panels: false + year_built: 1978 + surface: 3.942 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.972000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 5 + fields: + parent_id: null + status: 1 + street_number: bl.43-45 + address: Bd. Republicii + county: Vrancea + locality: Focșani + lat: 45.699572 + lng: 27.185021 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Tomulescu Costel + observations: '' + has_warning_panels: false + year_built: 1982 + surface: 4.411 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.980000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 6 + fields: + parent_id: null + status: 1 + street_number: bl.B4 + address: Bd.Unirii + county: Vrancea + locality: Focșani + lat: 45.68830152 + lng: 27.18526147 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 86 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihalache Victor + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 7.421 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.985000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 7 + fields: + parent_id: null + status: 1 + street_number: bl. G1-G2 + address: Bd. Unrii + county: Vrancea + locality: Focșani + lat: 45.6934252 + lng: 27.1850113 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 160 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihalache Victor + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 15.065 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.990000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 8 + fields: + parent_id: null + status: 1 + street_number: nr. 8, bl.H2 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihalache Victor + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 3.651 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.994000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 9 + fields: + parent_id: null + status: 1 + street_number: nr. 8, bl. I 1 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 75 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihalache Victor + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 5.227 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:12.999000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 10 + fields: + parent_id: null + status: 1 + street_number: nr. 8, bl. H8 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Diamandopol Radu Niculae + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 3645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.003000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 11 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H9 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Diamandopol Radu Niculae + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 3645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.007000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 12 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H10 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dragomirescu Elena + observations: '' + has_warning_panels: false + year_built: 1969 + surface: 4.375 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.016000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 13 + fields: + parent_id: null + status: 1 + street_number: bl. 39 + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.693089 + lng: 27.184728 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 35 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Căpăţînă Dan + observations: '' + has_warning_panels: false + year_built: 1981 + surface: 3.157 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.024000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 14 + fields: + parent_id: null + status: 1 + street_number: bl.D + address: Aleea 1 Iunie sud + county: Vrancea + locality: Focșani + lat: 45.68099565 + lng: 27.18486653 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Olaru Dan Vasile + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 6.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.030000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 15 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H5 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 100 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Olaru Dan Vasile + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 6.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.038000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 16 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H7 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Olaru Dan Vasile + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 3.84 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.043000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 17 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H1 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Olaru Dan Vasile + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 3.84 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.048000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 18 + fields: + parent_id: null + status: 1 + street_number: nr. 8, H4 + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7043867 + lng: 27.1720989 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Olaru Dan Vasile + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 5.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.053000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 19 + fields: + parent_id: null + status: 1 + street_number: bl.C1 + address: Bd. Stefan cel Mare + county: Vrancea + locality: Focșani + lat: 45.69846798 + lng: 27.1845405 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Tomulescu Costel + observations: '' + has_warning_panels: false + year_built: 1975 + surface: 2.979 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.061000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 20 + fields: + parent_id: null + status: 1 + street_number: bl.C2 + address: Bd. Stefan cel Mare + county: Vrancea + locality: Focșani + lat: 45.69838307 + lng: 27.18427957 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Tomulescu Costel + observations: '' + has_warning_panels: false + year_built: 1975 + surface: 2979.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.071000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 21 + fields: + parent_id: null + status: 1 + street_number: Bl. LC + address: Strada Bârsei + county: Vrancea + locality: Focșani + lat: 45.7012446 + lng: 27.17106117 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Aur Virgil + observations: '' + has_warning_panels: false + year_built: 1976 + surface: 2.92 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.080000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 22 + fields: + parent_id: null + status: 1 + street_number: bl.C2 + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.6885512 + lng: 27.18581905 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Aur Virgil + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 3.634 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.086000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 23 + fields: + parent_id: null + status: 1 + street_number: bl.D + address: Bd. Unirii + county: Vrancea + locality: Focșani + lat: 45.6885049 + lng: 27.18583016 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Aur Virgil + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 4.073 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.092000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 24 + fields: + parent_id: null + status: 1 + street_number: bl.A17/2(A17/1) + address: cart.Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.09596046 + lng: 24.37367475 + risk_category: N/A + height_regime: P+8 + is_still_present: true + consolidation_status: 'NO' + apartment_count: 264 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1980 + surface: 25380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 25 + fields: + parent_id: null + status: 1 + street_number: bl.S1 + address: Ana Ipătescu + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.10334125 + lng: 24.36704213 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 238 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1980 + surface: 16544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.127000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 26 + fields: + parent_id: null + status: 1 + street_number: bl.S3 + address: Ana Ipătescu + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.10362307 + lng: 24.36708827 + risk_category: N/A + height_regime: P+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 213 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1979 + surface: 15048.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.134000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 27 + fields: + parent_id: null + status: 1 + street_number: bl.I + address: str.Cozia + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1168483 + lng: 24.3591752 + risk_category: N/A + height_regime: P+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1983 + surface: 4224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.141000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 28 + fields: + parent_id: null + status: 1 + street_number: bl.S2 + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0893374 + lng: 24.3736829 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 413 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1976 + surface: 33264.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.147000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 29 + fields: + parent_id: null + status: 1 + street_number: bl.B5 + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0826539 + lng: 24.369233 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 174 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1976 + surface: 12672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.150000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 30 + fields: + parent_id: null + status: 1 + street_number: bl.A8/2 + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0826539 + lng: 24.369233 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1978 + surface: 4400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.154000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 31 + fields: + parent_id: null + status: 1 + street_number: bl.S1 + address: cart.Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0949003 + lng: 24.3729667 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1971 + surface: 6600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.161000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 32 + fields: + parent_id: null + status: 1 + street_number: bl.A3 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1140748 + lng: 24.363527 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 6160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.168000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 33 + fields: + parent_id: null + status: 1 + street_number: bl.A4 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 6160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.176000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 34 + fields: + parent_id: null + status: 1 + street_number: bl.A5 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1971 + surface: 6160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.182000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 35 + fields: + parent_id: null + status: 1 + street_number: bl.A6 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 6160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.188000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 36 + fields: + parent_id: null + status: 1 + street_number: bl.3 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1014893 + lng: 24.3472545 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1969 + surface: 3360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.193000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 37 + fields: + parent_id: null + status: 1 + street_number: bl.5 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1014893 + lng: 24.3472545 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 7200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.197000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 38 + fields: + parent_id: null + status: 1 + street_number: bl.13 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1136425 + lng: 24.363559 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 5500.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.201000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 39 + fields: + parent_id: null + status: 1 + street_number: bl.14 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1014893 + lng: 24.3472545 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 5500.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.204000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 40 + fields: + parent_id: null + status: 1 + street_number: bl.15 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1148654 + lng: 24.3630427 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 100 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 7200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.209000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 41 + fields: + parent_id: null + status: 1 + street_number: bl.20 + address: zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1091126 + lng: 24.3682473 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1969 + surface: 5500.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.216000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 42 + fields: + parent_id: null + status: 1 + street_number: bl.B1/2 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 4000.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.224000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 43 + fields: + parent_id: null + status: 1 + street_number: bl.9 + address: cart. 1 Mai + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0981357 + lng: 24.3587244 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 3600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.231000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 44 + fields: + parent_id: null + status: 1 + street_number: bl.12 + address: cart. 1 Mai + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0980788 + lng: 24.3602875 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 104 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 6000.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.237000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 45 + fields: + parent_id: null + status: 1 + street_number: bl.4 Popescu + address: zona centrală + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0849376 + lng: 24.3693004 + risk_category: N/A + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 3720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.242000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 46 + fields: + parent_id: null + status: 1 + street_number: bl.F + address: zona centrală + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1028805 + lng: 24.3651741 + risk_category: N/A + height_regime: P+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1980 + surface: 2709.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.246000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 47 + fields: + parent_id: null + status: 1 + street_number: bl.A22 + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0976721 + lng: 24.3700227 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 109 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1983 + surface: 770.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.251000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 48 + fields: + parent_id: null + status: 1 + street_number: bl.A27/III + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0826539 + lng: 24.369233 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 56 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1981 + surface: 4200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.257000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 49 + fields: + parent_id: null + status: 1 + street_number: bl.A28/I + address: cart. Ostroveni + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0826539 + lng: 24.369233 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1980 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.265000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 50 + fields: + parent_id: null + status: 1 + street_number: bl.N1 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1974 + surface: 6480.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.273000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 51 + fields: + parent_id: null + status: 1 + street_number: bl.N7 + address: zona Nord + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1183452 + lng: 24.3689552 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 900.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.280000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 52 + fields: + parent_id: null + status: 1 + street_number: bl.7 + address: parc Zăvoi + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.10164594 + lng: 24.35986964 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 3696.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.285000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 53 + fields: + parent_id: null + status: 1 + street_number: bl.9 + address: parc Zăvoi + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.10166824 + lng: 24.35891677 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 3696.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.290000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 54 + fields: + parent_id: null + status: 1 + street_number: bl.11 + address: parc Zăvoi + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.10171067 + lng: 24.35843097 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 3696.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.295000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 55 + fields: + parent_id: null + status: 1 + street_number: bl.G3 + address: Zona Traian + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.1014893 + lng: 24.3472545 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1969 + surface: 3292.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.300000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 56 + fields: + parent_id: null + status: 1 + street_number: bl.6A + address: cart. 1 Mai + county: Vâlcea + locality: Râmnicu Vâlcea + lat: 45.0981357 + lng: 24.3587244 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Hotinceanu N. Mihail + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 3110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.305000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 57 + fields: + parent_id: null + status: 1 + street_number: Bloc 13 + address: Str. Isaccei + county: Tulcea + locality: Tulcea + lat: 45.178649 + lng: 28.799849 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1962 + surface: 2905.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.327000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 58 + fields: + parent_id: null + status: 1 + street_number: Bloc 14 + address: Str. Isaccei + county: Tulcea + locality: Tulcea + lat: 45.1789841 + lng: 28.7986474 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1962 + surface: 2905.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.333000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 59 + fields: + parent_id: null + status: 1 + street_number: Bloc E1 + address: Str. Eternității + county: Tulcea + locality: Tulcea + lat: 45.1649344 + lng: 28.8026646 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1970 + surface: 2333.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.338000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 60 + fields: + parent_id: null + status: 1 + street_number: Bloc F3 + address: Str. Alunișului + county: Tulcea + locality: Tulcea + lat: 45.1773501 + lng: 28.7838033 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1971 + surface: 1284.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.344000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 61 + fields: + parent_id: null + status: 1 + street_number: Bloc A1 + address: Str. Spitalului + county: Tulcea + locality: Tulcea + lat: 45.1766697 + lng: 28.7842343 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1971 + surface: 1149.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.348000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 62 + fields: + parent_id: null + status: 1 + street_number: Bloc C1A + address: Str. I.L. Caragiale + county: Tulcea + locality: Tulcea + lat: 45.1679751 + lng: 28.8007065 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1969 + surface: 1995.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.352000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 63 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Tudor Vladimirescu nr 1 + county: Tulcea + locality: Sulina + lat: 45.154666 + lng: 29.661304 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 57.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.357000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 64 + fields: + parent_id: null + status: 1 + street_number: nr. 2 + address: Str. C.A. Rosetti + county: Tulcea + locality: Sulina + lat: 45.1550406 + lng: 29.6605235 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1902 + surface: 383.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.364000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 65 + fields: + parent_id: null + status: 1 + street_number: nr 258 + address: Str II + county: Tulcea + locality: Sulina + lat: 45.1562143 + lng: 29.6523714 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 571.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.373000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 66 + fields: + parent_id: null + status: 1 + street_number: nr 162A + address: Str I + county: Tulcea + locality: Sulina + lat: 45.156462 + lng: 29.652219 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 207.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.381000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 67 + fields: + parent_id: null + status: 1 + street_number: nr 183 + address: Str I + county: Tulcea + locality: Sulina + lat: 45.1563623 + lng: 29.6578862 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 258.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.387000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 68 + fields: + parent_id: null + status: 1 + street_number: nr 159 + address: Str. I + county: Tulcea + locality: Sulina + lat: 45.1565315 + lng: 29.6522229 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 194.68 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.391000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 69 + fields: + parent_id: null + status: 1 + street_number: nr.4 + address: Str. C.A. Rosetti + county: Tulcea + locality: Sulina + lat: 45.1550406 + lng: 29.6605235 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ruse Dumitru + observations: Locuinte + has_warning_panels: false + year_built: 1910 + surface: 191.86 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.396000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 70 + fields: + parent_id: null + status: 1 + street_number: nr 141, corp B + address: Str. 1 Decembrie + county: Tulcea + locality: Macin + lat: 45.2404736 + lng: 28.1487835 + risk_category: RS1 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Rusu N. Aneta + observations: Locuinte + has_warning_panels: false + year_built: 1973 + surface: 357.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.403000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 71 + fields: + parent_id: null + status: 1 + street_number: nr 141, corp A + address: Str. 1 Decembrie + county: Tulcea + locality: Macin + lat: 45.2430257 + lng: 28.1393206 + risk_category: RS3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Rusu N. Aneta + observations: Locuinte + has_warning_panels: null + year_built: 1973 + surface: 357.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.408000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 72 + fields: + parent_id: null + status: 1 + street_number: Bl. 407,NR55,sc.A,B + address: str.I.CREANGA + county: Teleorman + locality: Alexandria + lat: 43.970266 + lng: 25.326094 + risk_category: RS3 + height_regime: Spartial+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 38 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Ing.Al. Hristoforov + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 2934.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.433000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 73 + fields: + parent_id: null + status: 1 + street_number: Bl. 100, nr.148 + address: str.AI Ghica + county: Teleorman + locality: Alexandria + lat: 43.973527 + lng: 25.3373671 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1808.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.438000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 74 + fields: + parent_id: null + status: 1 + street_number: Bl. 101, nr.148 + address: str.AI Ghica + county: Teleorman + locality: Alexandria + lat: 43.9785705 + lng: 25.3298205 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2407.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.442000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 75 + fields: + parent_id: null + status: 1 + street_number: Bl. 102, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9735162 + lng: 25.3373627 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2407.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.445000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 76 + fields: + parent_id: null + status: 1 + street_number: Bl. 103, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9785149 + lng: 25.3299385 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1808.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.449000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 77 + fields: + parent_id: null + status: 1 + street_number: Bl. 104, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.973261 + lng: 25.3375893 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1808.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.453000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 78 + fields: + parent_id: null + status: 1 + street_number: Bl. 105, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9782317 + lng: 25.3304202 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1808.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.457000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 79 + fields: + parent_id: null + status: 1 + street_number: Bl. 106, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.973208 + lng: 25.337841 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1774.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.465000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 80 + fields: + parent_id: null + status: 1 + street_number: Bl. 107, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9777967 + lng: 25.3312685 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.474000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 81 + fields: + parent_id: null + status: 1 + street_number: Bl. 108, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.973101 + lng: 25.3379979 + risk_category: RS3 + height_regime: P+5 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.480000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 82 + fields: + parent_id: null + status: 1 + street_number: Bl. 109, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9759663 + lng: 25.3339134 + risk_category: RS3 + height_regime: P+6 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 895.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.485000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 83 + fields: + parent_id: null + status: 1 + street_number: Bl. 110, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9726546 + lng: 25.3386023 + risk_category: RS3 + height_regime: P+7 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.490000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 84 + fields: + parent_id: null + status: 1 + street_number: Bl. 111, nr.148 + address: str.Al Ghica + county: Teleorman + locality: Alexandria + lat: 43.9760009 + lng: 25.333695 + risk_category: RS3 + height_regime: P+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1774.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.495000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 85 + fields: + parent_id: null + status: 1 + street_number: nr. 28, Bl. C1 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.11505076 + lng: 24.9803241 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 2140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.499000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 86 + fields: + parent_id: null + status: 1 + street_number: nr. 28, Bl. C2 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.11487426 + lng: 24.9805037 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 2140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.505000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 87 + fields: + parent_id: null + status: 1 + street_number: nr. 28, Bl. C3 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.11464728 + lng: 24.98059705 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 2140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.512000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 88 + fields: + parent_id: null + status: 1 + street_number: Bl. H3 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1153688 + lng: 24.9844413 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.519000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 89 + fields: + parent_id: null + status: 1 + street_number: Bl. H4 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1153688 + lng: 24.9844413 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.528000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 90 + fields: + parent_id: null + status: 1 + street_number: Bl. HS + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1139961 + lng: 24.9802065 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hoticeanu N. Mihail Liviu + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.534000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 91 + fields: + parent_id: null + status: 1 + street_number: Bl. El, E2 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1153688 + lng: 24.9844413 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 1808.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.540000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 92 + fields: + parent_id: null + status: 1 + street_number: Bl. H8, H9 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1153688 + lng: 24.9844413 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1708.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.546000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 93 + fields: + parent_id: null + status: 1 + street_number: Bl. H6, H7 + address: str. Izbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1153688 + lng: 24.9844413 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1708.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.553000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 94 + fields: + parent_id: null + status: 1 + street_number: Bl. 302 + address: str. Sanatatii + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1186669 + lng: 24.9878599 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 2394.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.558000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 95 + fields: + parent_id: null + status: 1 + street_number: Bl. 40 Moara + address: str. lzbiceanu + county: Teleorman + locality: Roșiorii De Vede + lat: 44.1085569 + lng: 24.9949784 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 2330.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.566000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 96 + fields: + parent_id: null + status: 1 + street_number: Bl. A I + address: str. Rahovei + county: Teleorman + locality: Turnu Magurele + lat: 43.7512521 + lng: 24.8731211 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1970.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.574000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 97 + fields: + parent_id: null + status: 1 + street_number: Bl. A2 + address: str. Rahovei + county: Teleorman + locality: Turnu Magurele + lat: 43.7512521 + lng: 24.8731211 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1670.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.580000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 98 + fields: + parent_id: null + status: 1 + street_number: Bl. A3 + address: str. Rahovei + county: Teleorman + locality: Turnu Magurele + lat: 43.7512521 + lng: 24.8731211 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.586000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 99 + fields: + parent_id: null + status: 1 + street_number: Bl. A4 + address: str. Rahovei + county: Teleorman + locality: Turnu Magurele + lat: 43.7512521 + lng: 24.8731211 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.592000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 100 + fields: + parent_id: null + status: 1 + street_number: Bl. a2 + address: str. C. Voda + county: Teleorman + locality: Turnu Magurele + lat: 43.74613 + lng: 24.8740592 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 1916.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.597000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 101 + fields: + parent_id: null + status: 1 + street_number: Bl. D 12 + address: str. lndependentei + county: Teleorman + locality: Turnu Magurele + lat: 43.7500438 + lng: 24.8726629 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 4287.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.602000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 102 + fields: + parent_id: null + status: 1 + street_number: Bl. Dl4 + address: str. Independentei + county: Teleorman + locality: Turnu Magurele + lat: 43.7500438 + lng: 24.8726629 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.609000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 103 + fields: + parent_id: null + status: 1 + street_number: Bl. Fl 9 + address: str. I Mai + county: Teleorman + locality: Turnu Magurele + lat: 43.7501357 + lng: 24.8703035 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 3855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.617000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 104 + fields: + parent_id: null + status: 1 + street_number: Bl. F20 + address: str. I Mai + county: Teleorman + locality: Turnu Magurele + lat: 43.7501357 + lng: 24.8703035 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 2855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.626000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 105 + fields: + parent_id: null + status: 1 + street_number: Bl. F2 I + address: str. I Mai + county: Teleorman + locality: Turnu Magurele + lat: 43.7501357 + lng: 24.8703035 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 3855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.632000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 106 + fields: + parent_id: null + status: 1 + street_number: Bl. F2 + address: str. Taberei + county: Teleorman + locality: Turnu Magurele + lat: 43.7557971 + lng: 24.8674354 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.638000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 107 + fields: + parent_id: null + status: 1 + street_number: Bl. F3 + address: str. Taberei + county: Teleorman + locality: Turnu Magurele + lat: 43.7557971 + lng: 24.8674354 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.643000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 108 + fields: + parent_id: null + status: 1 + street_number: Bl. M4 + address: str. Pompierilor + county: Teleorman + locality: Turnu Magurele + lat: 43.7457782 + lng: 24.8644901 + risk_category: RS3 + height_regime: S+P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1278.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.648000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 109 + fields: + parent_id: null + status: 1 + street_number: Bl. E 1 + address: str. H.C.C. + county: Teleorman + locality: Turnu Magurele + lat: 43.7517061 + lng: 24.8773935 + risk_category: RS3 + height_regime: S+PE0 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing L Hotinceanu + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1820.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.655000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 110 + fields: + parent_id: null + status: 1 + street_number: Bl. V2 + address: str. Taberei + county: Teleorman + locality: Turnu Magurele + lat: 43.7557971 + lng: 24.8674354 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing A Hristoforov + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 1290.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.662000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 111 + fields: + parent_id: null + status: 1 + street_number: Bl. X1 + address: str. Taberei + county: Teleorman + locality: Turnu Magurele + lat: 43.7557971 + lng: 24.8674354 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: ing A Hristoforov + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 2017.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.671000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 112 + fields: + parent_id: null + status: 1 + street_number: Bl. X1 + address: str. Taberei + county: Teleorman + locality: Turnu Magurele + lat: 43.7557971 + lng: 24.8674354 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: ing A Hristoforov + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 2017.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.679000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 113 + fields: + parent_id: null + status: 1 + street_number: Bl. 4, sc A, B, C + address: str. Eroilor + county: Teleorman + locality: Zimnicea + lat: 43.6585268 + lng: 25.3641776 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 59 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 3605.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.685000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 114 + fields: + parent_id: null + status: 1 + street_number: Bl. 4D, sc.A, B + address: str. Calugareni + county: Teleorman + locality: Zimnicea + lat: 43.656702 + lng: 25.3447749 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1982 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.695000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 115 + fields: + parent_id: null + status: 1 + street_number: Bl. 4C, sc. A, B + address: str. Calugareni + county: Teleorman + locality: Zimnicea + lat: 43.656702 + lng: 25.3447749 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1982 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.699000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 116 + fields: + parent_id: null + status: 1 + street_number: Bl. I IF, sc. A, B, C + address: str. Cuza Voda + county: Teleorman + locality: Zimnicea + lat: 43.6562992 + lng: 25.3634834 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1982 + surface: 3763.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.705000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 117 + fields: + parent_id: null + status: 1 + street_number: Bl. 6 + address: str. Imparatul Traian + county: Teleorman + locality: Zimnicea + lat: 43.6501044 + lng: 25.3548307 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: SC Coral Slatina + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 1187.22 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.712000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 118 + fields: + parent_id: null + status: 1 + street_number: Bl. 2 + address: str. Trandafirilor + county: Teleorman + locality: Zimnicea + lat: 43.6503095 + lng: 25.3644329 + risk_category: RS3 + height_regime: Spartial+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Ing Hristoforov Al + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 1404.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.719000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 119 + fields: + parent_id: null + status: 1 + street_number: bl. 108 - 110 D + address: str. Democratiei + county: Prahova + locality: Ploiești + lat: 44.928769 + lng: 26.032101 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Manu Gheorghe + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2480.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.744000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 120 + fields: + parent_id: null + status: 1 + street_number: bl. 96 - 106 E + address: str. Democratiei + county: Prahova + locality: Ploiești + lat: 44.930135 + lng: 26.0316182 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Manu Gheorghe + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 8665.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.748000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 121 + fields: + parent_id: null + status: 1 + street_number: bl. 92 - 94 F + address: str. Democratiei + county: Prahova + locality: Ploiești + lat: 44.931037 + lng: 26.031368 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Manu Gheorghe + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2480.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.751000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 122 + fields: + parent_id: null + status: 1 + street_number: bl. 8 + address: str. Crizantemei + county: Prahova + locality: Ploiești + lat: 44.9561351 + lng: 26.0025371 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 5540.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.755000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 123 + fields: + parent_id: null + status: 1 + street_number: bl. 112 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9610267 + lng: 26.0059144 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 3330.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.758000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 124 + fields: + parent_id: null + status: 1 + street_number: bl. 29 + address: str. Nordului + county: Prahova + locality: Ploiești + lat: 44.9579735 + lng: 26.0101418 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 3330.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.766000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 125 + fields: + parent_id: null + status: 1 + street_number: bl. A + address: str. Jianu + county: Prahova + locality: Ploiești + lat: 44.92756246 + lng: 26.03085212 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Utza Baiacoianu + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 6873.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.773000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 126 + fields: + parent_id: null + status: 1 + street_number: bl. B + address: str. Jianu + county: Prahova + locality: Ploiești + lat: 44.92778654 + lng: 26.03137783 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Utza Baiacoianu + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 6873.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.781000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 127 + fields: + parent_id: null + status: 1 + street_number: bl. C + address: str. Jianu + county: Prahova + locality: Ploiești + lat: 44.92778654 + lng: 26.03187672 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 73 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Utza Baiacoianu + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 6645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.787000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 128 + fields: + parent_id: null + status: 1 + street_number: bl. 42 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9549481 + lng: 25.995256 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.792000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 129 + fields: + parent_id: null + status: 1 + street_number: bl. 43 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9547649 + lng: 25.9951068 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.799000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 130 + fields: + parent_id: null + status: 1 + street_number: bl. 45 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9547653 + lng: 25.9950243 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.804000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 131 + fields: + parent_id: null + status: 1 + street_number: bl. 13 + address: str. Scorusului + county: Prahova + locality: Ploiești + lat: 44.9572475 + lng: 26.0040288 + risk_category: U1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.811000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 132 + fields: + parent_id: null + status: 1 + street_number: bl. 15 + address: str. Scorusului + county: Prahova + locality: Ploiești + lat: 44.9572475 + lng: 26.0040288 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.819000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 133 + fields: + parent_id: null + status: 1 + street_number: bl. 3 + address: str. Brebenei + county: Prahova + locality: Ploiești + lat: 44.9550677 + lng: 26.0010702 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.828000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 134 + fields: + parent_id: null + status: 1 + street_number: bl. 33 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9620139 + lng: 26.007905 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.835000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 135 + fields: + parent_id: null + status: 1 + street_number: bl. 39 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9547653 + lng: 25.9952763 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.840000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 136 + fields: + parent_id: null + status: 1 + street_number: bl. 113 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9610267 + lng: 26.0059144 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.845000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 137 + fields: + parent_id: null + status: 1 + street_number: bl. 24 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9607461 + lng: 26.007473 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.850000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 138 + fields: + parent_id: null + status: 1 + street_number: bl. 53 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9547657 + lng: 25.9949418 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.855000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 139 + fields: + parent_id: null + status: 1 + street_number: bl. 59 + address: str. Cameliei + county: Prahova + locality: Ploiești + lat: 44.9547657 + lng: 25.9949418 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 3152.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.862000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 140 + fields: + parent_id: null + status: 1 + street_number: latura vest TR I + address: 'CENTRU CIVIC ' + county: Prahova + locality: Ploiești + lat: 44.9433149 + lng: 26.0213253 + risk_category: U1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 2028.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.869000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 141 + fields: + parent_id: null + status: 1 + street_number: latura vest TR II + address: 'CENTRU CIVIC ' + county: Prahova + locality: Ploiești + lat: 44.9433149 + lng: 26.0213253 + risk_category: U1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 1653.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.877000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 142 + fields: + parent_id: null + status: 1 + street_number: latura vest TR III + address: 'CENTRU CIVIC ' + county: Prahova + locality: Ploiești + lat: 44.9433149 + lng: 26.0213253 + risk_category: U1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 535.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.883000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 143 + fields: + parent_id: null + status: 1 + street_number: latura vest TR IV + address: 'CENTRU CIVIC ' + county: Prahova + locality: Ploiești + lat: 44.9433149 + lng: 26.0213253 + risk_category: U1 + height_regime: S+P+7 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 3267.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.889000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 144 + fields: + parent_id: null + status: 1 + street_number: '7' + address: str. Teatrului + county: Prahova + locality: Ploiești + lat: 44.9404502 + lng: 26.0269897 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1928 + surface: 598.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.895000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 145 + fields: + parent_id: null + status: 1 + street_number: '9' + address: str. Teatrului + county: Prahova + locality: Ploiești + lat: 44.9404616 + lng: 26.0271947 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1928 + surface: 668.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.899000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 146 + fields: + parent_id: null + status: 1 + street_number: '11' + address: str. Teatrului + county: Prahova + locality: Ploiești + lat: 44.940325 + lng: 26.0271633 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1928 + surface: 617.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.904000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 147 + fields: + parent_id: null + status: 1 + street_number: '3' + address: str. Erou Calin Catalin + county: Prahova + locality: Ploiești + lat: 44.941847 + lng: 26.0224573 + risk_category: U1 + height_regime: S+P+5 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1940 + surface: 4400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.909000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 148 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Mihai Bravu + county: Prahova + locality: Ploiești + lat: 44.9398423 + lng: 26.0283278 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Bogdan Dabija + observations: '' + has_warning_panels: false + year_built: 1940 + surface: 595.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.917000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 149 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Paris + county: Prahova + locality: Ploiești + lat: 44.94293616 + lng: 26.02599369 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Manu Gheorghe + observations: '' + has_warning_panels: false + year_built: 1940 + surface: 687.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.925000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 150 + fields: + parent_id: null + status: 1 + street_number: '2' + address: M. Eminescu + county: Prahova + locality: Ploiești + lat: 44.9326384 + lng: 26.0266094 + risk_category: U1 + height_regime: D+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1958 + surface: 2713.43 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.932000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 151 + fields: + parent_id: null + status: 1 + street_number: '4' + address: M. Eminescu + county: Prahova + locality: Ploiești + lat: 44.9323631 + lng: 26.0265624 + risk_category: U1 + height_regime: D+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1958 + surface: 3499.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.937000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 152 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Unirii + county: Prahova + locality: Ploiești + lat: 44.9420028 + lng: 26.024545 + risk_category: U2 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1935 + surface: 1200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.941000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 153 + fields: + parent_id: null + status: 1 + street_number: bl. 201 + address: B-dul Republicii + county: Prahova + locality: Ploiești + lat: 44.9510587 + lng: 26.0014667 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.945000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 154 + fields: + parent_id: null + status: 1 + street_number: bl.2010 + address: B-dul Republicii + county: Prahova + locality: Ploiești + lat: 44.9529145 + lng: 25.9975968 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.951000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 155 + fields: + parent_id: null + status: 1 + street_number: bl. 209 + address: B-dul Republicii + county: Prahova + locality: Ploiești + lat: 44.9510624 + lng: 26.0014584 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.955000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 156 + fields: + parent_id: null + status: 1 + street_number: bl. 207 + address: B-dul Republicii + county: Prahova + locality: Ploiești + lat: 44.9510614 + lng: 26.0014605 + risk_category: U2 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.961000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 157 + fields: + parent_id: null + status: 1 + street_number: bl. 3 + address: M. Eminescu + county: Prahova + locality: Ploiești + lat: 44.9325085 + lng: 26.0266438 + risk_category: U2 + height_regime: D+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1958 + surface: 2570.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.969000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 158 + fields: + parent_id: null + status: 1 + street_number: bl. 1 + address: M. Eminescu + county: Prahova + locality: Ploiești + lat: 44.9329889 + lng: 26.0263151 + risk_category: U1 + height_regime: D+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1958 + surface: 2570.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.977000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 159 + fields: + parent_id: null + status: 1 + street_number: bl. 4 + address: sos. Nordului + county: Prahova + locality: Ploiești + lat: 44.9546439 + lng: 26.002693 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 4100.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.982000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 160 + fields: + parent_id: null + status: 1 + street_number: bl. 1 + address: sos. Nordului + county: Prahova + locality: Ploiești + lat: 44.9526771 + lng: 26.0003398 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 4100.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.988000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 161 + fields: + parent_id: null + status: 1 + street_number: bl. 1 + address: Nordului + county: Prahova + locality: Ploiești + lat: 44.9526771 + lng: 26.0003398 + risk_category: U1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Zoltan Sandor + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 5865.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.993000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 162 + fields: + parent_id: null + status: 1 + street_number: 3 bl. A2 + address: Tarnavei + county: Prahova + locality: Ploiești + lat: 44.9526185 + lng: 26.0099855 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 4270.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:13.997000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 163 + fields: + parent_id: null + status: 1 + street_number: 2 bl. A7 + address: Cibinului + county: Prahova + locality: Ploiești + lat: 44.954687 + lng: 26.0095439 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.003000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 164 + fields: + parent_id: null + status: 1 + street_number: bl. 2 + address: Brebenei + county: Prahova + locality: Ploiești + lat: 44.954569 + lng: 26.0011999 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2285.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.010000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 165 + fields: + parent_id: null + status: 1 + street_number: bl. 5 + address: Brebenei + county: Prahova + locality: Ploiești + lat: 44.9552632 + lng: 26.0005973 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2285.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.018000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 166 + fields: + parent_id: null + status: 1 + street_number: bl. 9 + address: Crizantemei + county: Prahova + locality: Ploiești + lat: 44.9561074 + lng: 26.002501 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2285.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.026000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 167 + fields: + parent_id: null + status: 1 + street_number: bl. 10 + address: Crizantemei + county: Prahova + locality: Ploiești + lat: 44.9561074 + lng: 26.002501 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2285.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.033000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 168 + fields: + parent_id: null + status: 1 + street_number: 6,8 TR II + address: M. Eminescu + county: Prahova + locality: Câmpina + lat: 45.1251216 + lng: 25.734804 + risk_category: U2 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 1053.54 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.038000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 169 + fields: + parent_id: null + status: 1 + street_number: 6,8 TR II + address: M. Eminescu + county: Prahova + locality: Câmpina + lat: 45.1251216 + lng: 25.734804 + risk_category: U2 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 471.27 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.045000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 170 + fields: + parent_id: null + status: 1 + street_number: '10' + address: M. Eminescu + county: Prahova + locality: Câmpina + lat: 45.1256485 + lng: 25.7343403 + risk_category: RS1 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: false + year_built: 1960 + surface: 2124.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.049000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 171 + fields: + parent_id: null + status: 1 + street_number: 3 bl. A6 + address: Schelelor + county: Prahova + locality: Câmpina + lat: 45.1196633 + lng: 25.7387292 + risk_category: RS1 + height_regime: S+P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Aron gheorghe + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 14.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.056000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 172 + fields: + parent_id: null + status: 1 + street_number: bl. 38 + address: Orizontului + county: Prahova + locality: Câmpina + lat: 45.1206986 + lng: 25.7439642 + risk_category: RS1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae Aureliu + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 3118.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.106000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 173 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Orizontului + county: Prahova + locality: Câmpina + lat: 45.1273929 + lng: 25.7519907 + risk_category: RS1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae Aureliu + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 3118.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.113000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 174 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Orizontului + county: Prahova + locality: Câmpina + lat: 45.1272678 + lng: 25.7520775 + risk_category: RS1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae Aureliu + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 3118.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.121000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 175 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Orizontului + county: Prahova + locality: Câmpina + lat: 45.1271836 + lng: 25.752283 + risk_category: RS1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae Aureliu + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 3118.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.130000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 176 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Orizontului + county: Prahova + locality: Câmpina + lat: 45.1268087 + lng: 25.7524016 + risk_category: RS1 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae Aureliu + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 3118.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.134000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 177 + fields: + parent_id: null + status: 1 + street_number: '28' + address: 1 Mai + county: Prahova + locality: Urlați + lat: 44.986242 + lng: 26.233724 + risk_category: U3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: S.C. Consproiect S.A. Ploiesti + observations: '' + has_warning_panels: false + year_built: 1967 + surface: 2196.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.139000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 178 + fields: + parent_id: null + status: 1 + street_number: '15' + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.0035644 + lng: 26.4491479 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1982 + surface: 865.96 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.145000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 179 + fields: + parent_id: null + status: 1 + street_number: '16' + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.0036471 + lng: 26.448723 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1982 + surface: 865.96 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.150000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 180 + fields: + parent_id: null + status: 1 + street_number: '17' + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.0034763 + lng: 26.4490192 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1982 + surface: 851.51 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.155000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 181 + fields: + parent_id: null + status: 1 + street_number: bl. 43/A + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.00261664 + lng: 26.44717657 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1986 + surface: 818.44 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.160000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 182 + fields: + parent_id: null + status: 1 + street_number: bl. 43/B + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.00248172 + lng: 26.44695304 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1985 + surface: 924.75 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.168000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 183 + fields: + parent_id: null + status: 1 + street_number: bl. 43/C + address: N. Bălcescu + county: Prahova + locality: Mizil + lat: 45.00238342 + lng: 26.44663683 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Aldea Stelian + observations: '' + has_warning_panels: false + year_built: 1985 + surface: 822.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.177000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 184 + fields: + parent_id: null + status: 1 + street_number: 1 bl. C + address: B. Delavrancea + county: Prahova + locality: Vălenii de Munte + lat: 45.1824688 + lng: 26.0361727 + risk_category: RS2 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Consproiect S.A. Ploiesti + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 2121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.184000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 185 + fields: + parent_id: null + status: 1 + street_number: 3 bl. 5 + address: Aleea Alunilor + county: Prahova + locality: Vălenii de Munte + lat: 45.18459808 + lng: 26.03701971 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Consproiect S.A. Ploiesti + observations: '' + has_warning_panels: false + year_built: 1971 + surface: 923.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.191000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 186 + fields: + parent_id: null + status: 1 + street_number: 3 bl. 6 + address: Aleea Alunilor + county: Prahova + locality: Vălenii de Munte + lat: 45.1847358 + lng: 26.03713136 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Consproiect S.A. Ploiesti + observations: '' + has_warning_panels: false + year_built: 1971 + surface: 923.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.196000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 187 + fields: + parent_id: null + status: 1 + street_number: 19 bl. 2B + address: Fagului + county: Prahova + locality: Boldești Scăieni + lat: 45.0203382 + lng: 26.0274723 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 1140.61 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.201000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 188 + fields: + parent_id: null + status: 1 + street_number: 17 bl. 3A + address: Fagului + county: Prahova + locality: Boldești Scăieni + lat: 45.0203382 + lng: 26.0274723 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 1120.22 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.205000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 189 + fields: + parent_id: null + status: 1 + street_number: 9 bl. 2 + address: Podgoriei + county: Prahova + locality: Boldești Scăieni + lat: 45.029456 + lng: 26.0336121 + risk_category: U3 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 1141.17 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.210000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 190 + fields: + parent_id: null + status: 1 + street_number: 21 bl. 2A + address: Fagului + county: Prahova + locality: Boldești Scăieni + lat: 45.0203382 + lng: 26.0274723 + risk_category: U2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Ghitulescu Ad. + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 1140.61 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.218000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 191 + fields: + parent_id: null + status: 1 + street_number: 5 bl. 1 + address: Podgoriei + county: Prahova + locality: Boldești Scăieni + lat: 45.0296051 + lng: 26.0327697 + risk_category: U1 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Sergiu Baicoianu Utza + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 1141.17 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.227000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 192 + fields: + parent_id: null + status: 1 + street_number: 12 bl.12B + address: Intrarea Pieții + county: Prahova + locality: Boldești Scăieni + lat: 45.0303079 + lng: 26.0315282 + risk_category: U1 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Sergiu Baicoianu Utza + observations: '' + has_warning_panels: false + year_built: 1983 + surface: 243.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.233000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 193 + fields: + parent_id: null + status: 1 + street_number: Nr.2, bl A, SC.1 + address: str.A.Caracalla + county: Olt + locality: Caracal + lat: 44.1107615 + lng: 24.344921 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Gavrilă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 1836.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.250000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 194 + fields: + parent_id: null + status: 1 + street_number: nr.40, bl.D + address: str.lancu Jianu + county: Olt + locality: Caracal + lat: 44.1094934 + lng: 24.345478 + risk_category: RS3 + height_regime: D+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Gavrilă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 2020.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.254000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 195 + fields: + parent_id: null + status: 1 + street_number: nr.1, bl.17 + address: Aleea Rasaritului + county: Olt + locality: Caracal + lat: 44.1119352 + lng: 24.3583038 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Gavrilă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 954.24 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.259000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 196 + fields: + parent_id: null + status: 1 + street_number: bl. Ml + address: Aleea Virgil Carianopol + county: Olt + locality: Caracal + lat: 44.1078514 + lng: 24.3455538 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Gavrilă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 3045.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.264000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 197 + fields: + parent_id: null + status: 1 + street_number: nr.139, bl.HS + address: str.N. Balcescu + county: Olt + locality: Balș + lat: 44.3440652 + lng: 24.1252396 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 5422.09 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.272000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 198 + fields: + parent_id: null + status: 1 + street_number: nr.135, bl.Ll + address: str. N. Balcescu + county: Olt + locality: Balș + lat: 44.3440667 + lng: 24.1252342 + risk_category: RS3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Hotinceanu Mihail + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 4027.59 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.280000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 199 + fields: + parent_id: null + status: 1 + street_number: bl.CAM 1 + address: b-dul Al Cuza + county: Olt + locality: Slatina + lat: 44.4279028 + lng: 24.36880234 + risk_category: RS3 + height_regime: S+P+M+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Râcă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 9998.64 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.285000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 200 + fields: + parent_id: null + status: 1 + street_number: nr.4, Bl.FA 16 + address: str.Unirii + county: Olt + locality: Slatina + lat: 44.4295489 + lng: 24.3718964 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Râcă Gheorghe + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 5496.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.290000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 201 + fields: + parent_id: null + status: 1 + street_number: 184, bl.A1 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.1539002 + lng: 27.5802418 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 6672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.320000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 202 + fields: + parent_id: null + status: 1 + street_number: 182, bl.A2 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.1548322 + lng: 27.5786375 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 6672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.328000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 203 + fields: + parent_id: null + status: 1 + street_number: 186, bl.C1 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.1529913 + lng: 27.5818366 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.333000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 204 + fields: + parent_id: null + status: 1 + street_number: 188, bl.C2 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.152913 + lng: 27.582038 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.338000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 205 + fields: + parent_id: null + status: 1 + street_number: 190, bl.C3 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.152401 + lng: 27.583057 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.343000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 206 + fields: + parent_id: null + status: 1 + street_number: 192, bl.C4 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.152221 + lng: 27.583591 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.347000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 207 + fields: + parent_id: null + status: 1 + street_number: 180, bl.A3 + address: Soseaua Nationala + county: Iași + locality: Iași + lat: 47.1557734 + lng: 27.5770765 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 6672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.351000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 208 + fields: + parent_id: null + status: 1 + street_number: 20, bl.B15 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1520472 + lng: 27.5939861 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 1420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.357000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 209 + fields: + parent_id: null + status: 1 + street_number: 8, bl.89 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1516339 + lng: 27.5921784 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 1420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.364000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 210 + fields: + parent_id: null + status: 1 + street_number: 45, bl.P6 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1487432 + lng: 27.5811773 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 5350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.372000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 211 + fields: + parent_id: null + status: 1 + street_number: 47, bl.E1 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.148115 + lng: 27.5827933 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.379000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 212 + fields: + parent_id: null + status: 1 + street_number: 49, bl.G1 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1460631 + lng: 27.5858784 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 4902.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.385000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 213 + fields: + parent_id: null + status: 1 + street_number: 51, bl.G2 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.14713 + lng: 27.5855669 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 4902.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.390000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 214 + fields: + parent_id: null + status: 1 + street_number: 53, bl.E2 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1465704 + lng: 27.5866706 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.394000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 215 + fields: + parent_id: null + status: 1 + street_number: 55, bl.E3 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.146485 + lng: 27.58752 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.400000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 216 + fields: + parent_id: null + status: 1 + street_number: 57, bl.E4 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1462983 + lng: 27.5888989 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.405000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 217 + fields: + parent_id: null + status: 1 + street_number: 59, bl.E5 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.146362 + lng: 27.589368 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.410000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 218 + fields: + parent_id: null + status: 1 + street_number: 61, bl.F1 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.14699 + lng: 27.590947 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2451.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.417000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 219 + fields: + parent_id: null + status: 1 + street_number: 127, bl.E1 + address: Str. Ciurchi + county: Iași + locality: Iași + lat: 47.155465 + lng: 27.622576 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 4449.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.426000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 220 + fields: + parent_id: null + status: 1 + street_number: 123, bl.E3 + address: Str. Ciurchi + county: Iași + locality: Iași + lat: 47.1548561 + lng: 27.62037 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 4449.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.432000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 221 + fields: + parent_id: null + status: 1 + street_number: 125, bl.E2 + address: Str. Ciurchi + county: Iași + locality: Iași + lat: 47.1553873 + lng: 27.62133 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 4449.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.437000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 222 + fields: + parent_id: null + status: 1 + street_number: 92, bl.D7 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.158486 + lng: 27.614841 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.443000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 223 + fields: + parent_id: null + status: 1 + street_number: 98, bl.D6 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.158332 + lng: 27.616035 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1933 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.447000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 224 + fields: + parent_id: null + status: 1 + street_number: 104, bl.D5 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.157877 + lng: 27.617016 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.452000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 225 + fields: + parent_id: null + status: 1 + street_number: 110, bl.D4 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.1589452 + lng: 27.6012546 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.457000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 226 + fields: + parent_id: null + status: 1 + street_number: 120, bl.D3 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.1569009 + lng: 27.6197536 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.465000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 227 + fields: + parent_id: null + status: 1 + street_number: 126, bl.D2 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.1565538 + lng: 27.6203897 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.472000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 228 + fields: + parent_id: null + status: 1 + street_number: 132, bl.D1 + address: Str. Vasile Lupu + county: Iași + locality: Iași + lat: 47.155844 + lng: 27.6217086 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1933 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 3886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.479000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 229 + fields: + parent_id: null + status: 1 + street_number: 20, bl.A6 + address: Al. Rozelor + county: Iași + locality: Iași + lat: 47.147632 + lng: 27.586348 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.484000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 230 + fields: + parent_id: null + status: 1 + street_number: 24, bl.K2 + address: Al. Rozelor + county: Iași + locality: Iași + lat: 47.1470585 + lng: 27.5866124 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3982.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.488000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 231 + fields: + parent_id: null + status: 1 + street_number: 32, bl.K3 + address: Al. Rozelor + county: Iași + locality: Iași + lat: 47.146539 + lng: 27.588438 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3982.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.494000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 232 + fields: + parent_id: null + status: 1 + street_number: 42, bl.K4 + address: Al. Rozelor + county: Iași + locality: Iași + lat: 47.1480528 + lng: 27.5903077 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 3982.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.501000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 233 + fields: + parent_id: null + status: 1 + street_number: 41, bl.PS + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1481881 + lng: 27.5808979 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 3950.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.505000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 234 + fields: + parent_id: null + status: 1 + street_number: 43, bl.B6 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.149061 + lng: 27.5814771 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.510000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 235 + fields: + parent_id: null + status: 1 + street_number: 2, bl.87 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.1513008 + lng: 27.5842211 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.517000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 236 + fields: + parent_id: null + status: 1 + street_number: 4, bl.86 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.151507 + lng: 27.5836663 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.526000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 237 + fields: + parent_id: null + status: 1 + street_number: 8, bl.85 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.1517964 + lng: 27.5832658 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1933 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.533000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 238 + fields: + parent_id: null + status: 1 + street_number: 5, bl.84 + address: D.Cantemir + county: Iași + locality: Iași + lat: 47.1514015 + lng: 27.5815449 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.538000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 239 + fields: + parent_id: null + status: 1 + street_number: 9, bl.83 + address: D.Cantemir + county: Iași + locality: Iași + lat: 47.1505927 + lng: 27.5802284 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.543000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 240 + fields: + parent_id: null + status: 1 + street_number: 7, bl.A1 + address: Tutora + county: Iași + locality: Iași + lat: 47.150452 + lng: 27.592534 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.546000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 241 + fields: + parent_id: null + status: 1 + street_number: 9, bl.A2 + address: Tutora + county: Iași + locality: Iași + lat: 47.1499724 + lng: 27.5944374 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.552000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 242 + fields: + parent_id: null + status: 1 + street_number: 13, bl.A3 + address: Tutora + county: Iași + locality: Iași + lat: 47.1499724 + lng: 27.5944374 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.557000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 243 + fields: + parent_id: null + status: 1 + street_number: 4, bl.85 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.151425 + lng: 27.5913227 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 1420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.565000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 244 + fields: + parent_id: null + status: 1 + street_number: 12, bl.811 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1518198 + lng: 27.5930437 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 1420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.575000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 245 + fields: + parent_id: null + status: 1 + street_number: 16, bl.813 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.152067 + lng: 27.593963 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 1420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.581000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 246 + fields: + parent_id: null + status: 1 + street_number: 26, bl.A6 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1526578 + lng: 27.5978779 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 2453.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.588000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 247 + fields: + parent_id: null + status: 1 + street_number: 21, bl.A5 + address: Primaverii + county: Iași + locality: Iași + lat: 47.1516652 + lng: 27.5966361 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 2453.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.593000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 248 + fields: + parent_id: null + status: 1 + street_number: 15, bl.A1 + address: Nicolina + county: Iași + locality: Iași + lat: 47.1476443 + lng: 27.5846794 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 3560.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.597000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 249 + fields: + parent_id: null + status: 1 + street_number: '34' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1597928 + lng: 27.5998604 + risk_category: U1 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 1906.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.601000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 250 + fields: + parent_id: null + status: 1 + street_number: 24, bl.C1 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1631911 + lng: 27.5809833 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1962 + surface: 6666.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.607000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 251 + fields: + parent_id: null + status: 1 + street_number: 101, bl.F7 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.157499 + lng: 27.614327 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.613000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 252 + fields: + parent_id: null + status: 1 + street_number: 103, bl.F6 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1570759 + lng: 27.6141468 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.621000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 253 + fields: + parent_id: null + status: 1 + street_number: 105, bl.F5 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.156417 + lng: 27.613683 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.630000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 254 + fields: + parent_id: null + status: 1 + street_number: 107, bl.F4 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1563408 + lng: 27.6153879 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.635000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 255 + fields: + parent_id: null + status: 1 + street_number: 111, bl.F3 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1555349 + lng: 27.6161429 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.640000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 256 + fields: + parent_id: null + status: 1 + street_number: 113, bl.F2 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1553132 + lng: 27.6177478 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.644000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 257 + fields: + parent_id: null + status: 1 + street_number: 115, bl.F1 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1553599 + lng: 27.6185174 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.650000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 258 + fields: + parent_id: null + status: 1 + street_number: 117, bl.Fa + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1552318 + lng: 27.6190873 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6814.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.655000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 259 + fields: + parent_id: null + status: 1 + street_number: 86, bl.K1 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1596165 + lng: 27.6145182 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 35 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 2894.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.659000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 260 + fields: + parent_id: null + status: 1 + street_number: 18, bl. B14 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.152063 + lng: 27.594519 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1976 + surface: 2364.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.667000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 261 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Cuza Voda + county: Iași + locality: Iași + lat: 47.1654007 + lng: 27.580626 + risk_category: U1 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 1146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.675000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 262 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Lapusneanu + county: Iași + locality: Iași + lat: 47.168492 + lng: 27.5779977 + risk_category: U1 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Iosif Cichi + observations: '' + has_warning_panels: false + year_built: 1959 + surface: 922.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.682000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 263 + fields: + parent_id: null + status: 1 + street_number: 2, bl. A1 + address: Str.Oastei + county: Iași + locality: Iași + lat: 47.17948 + lng: 27.5702019 + risk_category: RS1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 2131.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.687000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 264 + fields: + parent_id: null + status: 1 + street_number: 1, bl. F + address: Str.Nicolina + county: Iași + locality: Iași + lat: 47.150412 + lng: 27.587006 + risk_category: RS1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 192 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: false + year_built: 1971 + surface: 18455.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.692000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 265 + fields: + parent_id: null + status: 1 + street_number: 18, bl. H1 + address: Str.Socola + county: Iași + locality: Iași + lat: 47.147347 + lng: 27.591456 + risk_category: U2 + height_regime: P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 140 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 5810.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.697000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 266 + fields: + parent_id: null + status: 1 + street_number: '107' + address: Str.Pacurari + county: Iași + locality: Iași + lat: 47.1733212 + lng: 27.5591244 + risk_category: U2 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.701000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 267 + fields: + parent_id: null + status: 1 + street_number: '42' + address: T. Vladimirescu + county: Iași + locality: Iași + lat: 47.158289 + lng: 27.6013683 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.705000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 268 + fields: + parent_id: null + status: 1 + street_number: '83' + address: T. Vladimirescu + county: Iași + locality: Iași + lat: 47.1605134 + lng: 27.5997318 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.711000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 269 + fields: + parent_id: null + status: 1 + street_number: '87' + address: T. Vladimirescu + county: Iași + locality: Iași + lat: 47.1601894 + lng: 27.6000751 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.718000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 270 + fields: + parent_id: null + status: 1 + street_number: '91' + address: T. Vladimirescu + county: Iași + locality: Iași + lat: 47.1597909 + lng: 27.6004753 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.725000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 271 + fields: + parent_id: null + status: 1 + street_number: '81' + address: T. Vladimirescu + county: Iași + locality: Iași + lat: 47.1608655 + lng: 27.5993755 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.731000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 272 + fields: + parent_id: null + status: 1 + street_number: 59A, bl. N2 + address: Str. I.Creanga + county: Iași + locality: Iași + lat: 47.1617295 + lng: 27.6143673 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 29 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1785.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.736000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 273 + fields: + parent_id: null + status: 1 + street_number: 59B, bl. N3 + address: Str. I.Creanga + county: Iași + locality: Iași + lat: 47.162023 + lng: 27.614535 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1364.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.741000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 274 + fields: + parent_id: null + status: 1 + street_number: 34, bl. A11 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1468471 + lng: 27.5892394 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.745000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 275 + fields: + parent_id: null + status: 1 + street_number: 38, bl. A10 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.147137 + lng: 27.589005 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.751000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 276 + fields: + parent_id: null + status: 1 + street_number: 26, bl. A9 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1468758 + lng: 27.5873928 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.757000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 277 + fields: + parent_id: null + status: 1 + street_number: 28, bl. AS + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.147246 + lng: 27.587785 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.765000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 278 + fields: + parent_id: null + status: 1 + street_number: 16, bl. A7 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1473656 + lng: 27.5858283 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.773000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 279 + fields: + parent_id: null + status: 1 + street_number: 22, bl. L 1 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.147317 + lng: 27.5868832 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.780000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 280 + fields: + parent_id: null + status: 1 + street_number: 30, bl. L2 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1470205 + lng: 27.5884158 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.785000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 281 + fields: + parent_id: null + status: 1 + street_number: 40, bl. L3 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.147395 + lng: 27.589953 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.790000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 282 + fields: + parent_id: null + status: 1 + street_number: 6, bl. 11 + address: Nicolina + county: Iași + locality: Iași + lat: 47.1392648 + lng: 27.5778321 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2606.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.795000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 283 + fields: + parent_id: null + status: 1 + street_number: 8, bl. J1 + address: Nicolina + county: Iași + locality: Iași + lat: 47.1478089 + lng: 27.5840474 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2606.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.801000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 284 + fields: + parent_id: null + status: 1 + street_number: 3, bl. A 1 + address: Nicolina + county: Iași + locality: Iași + lat: 47.149859 + lng: 27.586598 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firiea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.807000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 285 + fields: + parent_id: null + status: 1 + street_number: 5, bl. A2 + address: Nicolina + county: Iași + locality: Iași + lat: 47.138874 + lng: 27.578523 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.813000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 286 + fields: + parent_id: null + status: 1 + street_number: 7, bl. A3 + address: Nicolina + county: Iași + locality: Iași + lat: 47.1491305 + lng: 27.5862367 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.820000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 287 + fields: + parent_id: null + status: 1 + street_number: 9, bl. A4 + address: Nicolina + county: Iași + locality: Iași + lat: 47.14885 + lng: 27.585902 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.827000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 288 + fields: + parent_id: null + status: 1 + street_number: 11, bl. AS + address: 'Nicolina ' + county: Iași + locality: Iași + lat: 47.138218 + lng: 27.5778549 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.835000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 289 + fields: + parent_id: null + status: 1 + street_number: 17 B + address: Bucium + county: Iași + locality: Iași + lat: 47.14347 + lng: 27.603037 + risk_category: U2 + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 755.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.840000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 290 + fields: + parent_id: null + status: 1 + street_number: 104 B + address: Socola + county: Iași + locality: Iași + lat: 47.142349 + lng: 27.598603 + risk_category: U2 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.844000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 291 + fields: + parent_id: null + status: 1 + street_number: 7, bl. D1 + address: Socola + county: Iași + locality: Iași + lat: 47.14996728 + lng: 27.58931908 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1609.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.848000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 292 + fields: + parent_id: null + status: 1 + street_number: 35, bl. N1 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1463234 + lng: 27.5851459 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.852000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 293 + fields: + parent_id: null + status: 1 + street_number: 37, bl. N2 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1478705 + lng: 27.5825729 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.857000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 294 + fields: + parent_id: null + status: 1 + street_number: 1, bl. B2 + address: Bulevardul D.Cantemir + county: Iași + locality: Iași + lat: 47.152191 + lng: 27.58228 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2666.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.864000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 295 + fields: + parent_id: null + status: 1 + street_number: 7 A, bl. D3 + address: Codrescu + county: Iași + locality: Iași + lat: 47.1787735 + lng: 27.5729969 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.873000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 296 + fields: + parent_id: null + status: 1 + street_number: 9A, bl. D2 + address: Codrescu + county: Iași + locality: Iași + lat: 47.1791441 + lng: 27.5732711 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.880000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 297 + fields: + parent_id: null + status: 1 + street_number: 11A, bl. D1 + address: Codrescu + county: Iași + locality: Iași + lat: 47.1579244 + lng: 27.6036349 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.885000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 298 + fields: + parent_id: null + status: 1 + street_number: 9, bl. P4 + address: Primaverii + county: Iași + locality: Iași + lat: 47.148621 + lng: 27.5929291 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1339.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.891000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 299 + fields: + parent_id: null + status: 1 + street_number: 15, bl. A4 + address: Primaverii + county: Iași + locality: Iași + lat: 47.1502857 + lng: 27.5954581 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2652.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.895000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 300 + fields: + parent_id: null + status: 1 + street_number: 93, bl. V1 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.159737 + lng: 27.617454 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4524.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.899000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 301 + fields: + parent_id: null + status: 1 + street_number: 89, bl. V2 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.159918 + lng: 27.616139 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4524.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.905000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 302 + fields: + parent_id: null + status: 1 + street_number: 85, bl. V3 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1601273 + lng: 27.6150676 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4524.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.911000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 303 + fields: + parent_id: null + status: 1 + street_number: 122, bl. B6 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.158126 + lng: 27.62049 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.918000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 304 + fields: + parent_id: null + status: 1 + street_number: 134, bl. B4 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1570974 + lng: 27.6219508 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.927000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 305 + fields: + parent_id: null + status: 1 + street_number: 107A, bl. B7 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1563408 + lng: 27.6153879 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Am + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.934000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 306 + fields: + parent_id: null + status: 1 + street_number: 109, bl. B2 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.155535 + lng: 27.616143 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.939000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 307 + fields: + parent_id: null + status: 1 + street_number: 117, bl. B1 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1552318 + lng: 27.6190873 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.944000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 308 + fields: + parent_id: null + status: 1 + street_number: 136, bl. B3 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1562278 + lng: 27.6226817 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4008.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.948000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 309 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Soseaua Arcu + county: Iași + locality: Iași + lat: 47.1687703 + lng: 27.5699757 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 62 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 3429.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.955000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 310 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Th.Burada + county: Iași + locality: Iași + lat: 47.1653803 + lng: 27.5842587 + risk_category: U2 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.960000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 311 + fields: + parent_id: null + status: 1 + street_number: 4, bl. B9 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1494165 + lng: 27.5817441 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.968000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 312 + fields: + parent_id: null + status: 1 + street_number: 115 A, bl. B8 + address: Ciurchi + county: Iași + locality: Iași + lat: 47.1553599 + lng: 27.6185174 + risk_category: U2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4136.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.977000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 313 + fields: + parent_id: null + status: 1 + street_number: 2, sc.B1 + address: Titu Maiorescu + county: Iași + locality: Iași + lat: 47.17663262 + lng: 27.56985801 + risk_category: U2 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 7060.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.983000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 314 + fields: + parent_id: null + status: 1 + street_number: 11 bl. 4 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.165363 + lng: 27.579035 + risk_category: U2 + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2376.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.988000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 315 + fields: + parent_id: null + status: 1 + street_number: 9 bl. 5 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.1652049 + lng: 27.5794822 + risk_category: U2 + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2392.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.992000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 316 + fields: + parent_id: null + status: 1 + street_number: 7 bl. 6 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.1650908 + lng: 27.5799995 + risk_category: U2 + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2252.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:14.996000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 317 + fields: + parent_id: null + status: 1 + street_number: 2 bl. 10 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.1668371 + lng: 27.5799685 + risk_category: U2 + height_regime: P+6E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 172 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 8808.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.002000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 318 + fields: + parent_id: null + status: 1 + street_number: 3 bl. 11 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.167464 + lng: 27.580886 + risk_category: U2 + height_regime: P+6E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 68 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 5091.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.006000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 319 + fields: + parent_id: null + status: 1 + street_number: 8, bl. E + address: V.Alecsandri + county: Iași + locality: Iași + lat: 47.1667523 + lng: 27.5821795 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 1450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.014000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 320 + fields: + parent_id: null + status: 1 + street_number: 4, bl. O + address: V.Alecsandri + county: Iași + locality: Iași + lat: 47.1670527 + lng: 27.5817868 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 33 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 2100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.022000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 321 + fields: + parent_id: null + status: 1 + street_number: 29, bl. B5 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1533657 + lng: 27.5990532 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 3418.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.029000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 322 + fields: + parent_id: null + status: 1 + street_number: 22, bl. 2 + address: Pacurari + county: Iași + locality: Iași + lat: 47.1751751 + lng: 27.5457922 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iosif Cichi + observations: '' + has_warning_panels: null + year_built: 1956 + surface: 5308.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.036000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 323 + fields: + parent_id: null + status: 1 + street_number: 1, bl. P3 + address: Smardan + county: Iași + locality: Iași + lat: 47.1583906 + lng: 27.6007428 + risk_category: RS2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iosif Cichi + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.044000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 324 + fields: + parent_id: null + status: 1 + street_number: 83, bl. D1 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1602937 + lng: 27.6133959 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 200 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Petru Chiriac + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 17950.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.049000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 325 + fields: + parent_id: null + status: 1 + street_number: 198, bl. B + address: Sos. Nationala + county: Iași + locality: Iași + lat: 47.1511478 + lng: 27.5860716 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 64 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 7075.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.054000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 326 + fields: + parent_id: null + status: 1 + street_number: 124, bl. B5 + address: Str.Vasile Lupu + county: Iași + locality: Iași + lat: 47.1575885 + lng: 27.6208065 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Adrian Mihalache + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 4136.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.061000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 327 + fields: + parent_id: null + status: 1 + street_number: 7C, bl. B2 + address: Str.Codrescu + county: Iași + locality: Iași + lat: 47.1782442 + lng: 27.5715164 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iosif Cichi + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 1904.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.068000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 328 + fields: + parent_id: null + status: 1 + street_number: 7, bl. K2 + address: Str.I.Creanga + county: Iași + locality: Iași + lat: 47.1623285 + lng: 27.6066444 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 3522.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.075000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 329 + fields: + parent_id: null + status: 1 + street_number: 35, bl. B2 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1538871 + lng: 27.6031205 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 3418.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.083000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 330 + fields: + parent_id: null + status: 1 + street_number: 17, bl. D7 + address: Str.Socola + county: Iași + locality: Iași + lat: 47.120771 + lng: 27.6178079 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Adrian Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3869.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.088000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 331 + fields: + parent_id: null + status: 1 + street_number: 32, bl. B4 + address: Bulevardul Carol + county: Iași + locality: Iași + lat: 47.1776211 + lng: 27.5710649 + risk_category: RS2 + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 53 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Iosif Cichi + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3497.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.092000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 332 + fields: + parent_id: null + status: 1 + street_number: 47, bl. C4 + address: Sos.Nationala + county: Iași + locality: Iași + lat: 47.1529304 + lng: 27.5836497 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 5310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.097000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 333 + fields: + parent_id: null + status: 1 + street_number: 18, bl. C2 + address: Decebal + county: Iași + locality: Iași + lat: 47.1504713 + lng: 27.5827083 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 4902.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.103000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 334 + fields: + parent_id: null + status: 1 + street_number: 17, bl. X13 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1479331 + lng: 27.5887019 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1345.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.108000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 335 + fields: + parent_id: null + status: 1 + street_number: 43A, bl. X1 + address: Bulevardul Nicolae lorga + county: Iași + locality: Iași + lat: 47.1490567 + lng: 27.5814676 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.115000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 336 + fields: + parent_id: null + status: 1 + street_number: 18, bl. C2 + address: Str. Decembrie + county: Iași + locality: Iași + lat: 47.1640626 + lng: 27.5816024 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 1310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.123000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 337 + fields: + parent_id: null + status: 1 + street_number: 19, bl. R4-II + address: Musatini + county: Iași + locality: Iași + lat: 47.1601598 + lng: 27.5652529 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 2000.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.130000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 338 + fields: + parent_id: null + status: 1 + street_number: 4, bl. 07 + address: Buridava + county: Iași + locality: Iași + lat: 47.1674589 + lng: 27.5527233 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M .V. Molocea + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 2367.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.135000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 339 + fields: + parent_id: null + status: 1 + street_number: 13-15, bl. B 1-3 + address: Buridava + county: Iași + locality: Iași + lat: 47.167797 + lng: 27.5498089 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 3557.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.141000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 340 + fields: + parent_id: null + status: 1 + street_number: 19-21, bl. J 8-9 + address: Taibacului + county: Iași + locality: Iași + lat: 47.1692832 + lng: 27.5479242 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 38 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1978 + surface: 2323.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.145000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 341 + fields: + parent_id: null + status: 1 + street_number: 15, bl. Q9 + address: Mircea cel Batran + county: Iași + locality: Iași + lat: 47.1547413 + lng: 27.5705506 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 5605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.149000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 342 + fields: + parent_id: null + status: 1 + street_number: 114-116, bl. A3 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.158632 + lng: 27.6196089 + risk_category: U3 + height_regime: P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 7933.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.155000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 343 + fields: + parent_id: null + status: 1 + street_number: 3, bl. A3 + address: P.lspirescu + county: Iași + locality: Iași + lat: 47.1628125 + lng: 27.6056043 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 7420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.162000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 344 + fields: + parent_id: null + status: 1 + street_number: 43, bl. T1 + address: C.Negri + county: Iași + locality: Iași + lat: 47.1604583 + lng: 27.5860704 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 61 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 5709.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.169000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 345 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strapungerea Stefan cel Mare + county: Iași + locality: Iași + lat: 47.1654548 + lng: 27.5804104 + risk_category: U3 + height_regime: P+5E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 1861.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.177000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 346 + fields: + parent_id: null + status: 1 + street_number: 22, bl. Y2 + address: Bulevardul Independentei + county: Iași + locality: Iași + lat: 47.1662919 + lng: 27.5857707 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 5348.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.183000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 347 + fields: + parent_id: null + status: 1 + street_number: '118' + address: Pacurari + county: Iași + locality: Iași + lat: 47.173571 + lng: 27.5592709 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.187000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 348 + fields: + parent_id: null + status: 1 + street_number: '116' + address: Pacurari + county: Iași + locality: Iași + lat: 47.173462 + lng: 27.5600561 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.192000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 349 + fields: + parent_id: null + status: 1 + street_number: '109' + address: Pacurari + county: Iași + locality: Iași + lat: 47.1733517 + lng: 27.5589219 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.199000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 350 + fields: + parent_id: null + status: 1 + street_number: '125' + address: Pacurari + county: Iași + locality: Iași + lat: 47.1737139 + lng: 27.556776 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 940.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.202000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 351 + fields: + parent_id: null + status: 1 + street_number: '127' + address: Pacurari + county: Iași + locality: Iași + lat: 47.173781 + lng: 27.55631 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.206000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 352 + fields: + parent_id: null + status: 1 + street_number: 14, bl. G1 + address: Pacurari + county: Iași + locality: Iași + lat: 47.1704782 + lng: 27.5731043 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 1266.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.213000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 353 + fields: + parent_id: null + status: 1 + street_number: '36' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1593098 + lng: 27.6002928 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.220000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 354 + fields: + parent_id: null + status: 1 + street_number: '38' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1589601 + lng: 27.6005297 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 1282.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.230000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 355 + fields: + parent_id: null + status: 1 + street_number: '44' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1578383 + lng: 27.6018346 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.237000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 356 + fields: + parent_id: null + status: 1 + street_number: '46' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.157385 + lng: 27.602243 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.243000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 357 + fields: + parent_id: null + status: 1 + street_number: '48' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1569046 + lng: 27.6027333 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.248000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 358 + fields: + parent_id: null + status: 1 + street_number: '79' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1611005 + lng: 27.5994207 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.254000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 359 + fields: + parent_id: null + status: 1 + street_number: '85' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1605073 + lng: 27.6000395 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1118.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.262000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 360 + fields: + parent_id: null + status: 1 + street_number: '89' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1600198 + lng: 27.6005679 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1088.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.271000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 361 + fields: + parent_id: null + status: 1 + street_number: '101' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1580095 + lng: 27.6022824 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3312.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.278000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 362 + fields: + parent_id: null + status: 1 + street_number: '103' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1579231 + lng: 27.6029295 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1104.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.286000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 363 + fields: + parent_id: null + status: 1 + street_number: '105' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1574531 + lng: 27.6028389 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2208.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.293000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 364 + fields: + parent_id: null + status: 1 + street_number: '107' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1572879 + lng: 27.6032358 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.299000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 365 + fields: + parent_id: null + status: 1 + street_number: 64, bl. N4 + address: Stejar + county: Iași + locality: Iași + lat: 47.1623748 + lng: 27.6145748 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1364.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.303000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 366 + fields: + parent_id: null + status: 1 + street_number: 17A + address: Bucium + county: Iași + locality: Iași + lat: 47.135584 + lng: 27.6095981 + risk_category: U3 + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 595.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.308000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 367 + fields: + parent_id: null + status: 1 + street_number: 1 A,B,C + address: Duca Voda + county: Iași + locality: Iași + lat: 47.1452931 + lng: 27.5931907 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.316000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 368 + fields: + parent_id: null + status: 1 + street_number: 104 A + address: Socola + county: Iași + locality: Iași + lat: 47.142349 + lng: 27.598603 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.325000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 369 + fields: + parent_id: null + status: 1 + street_number: 104 C + address: Socola + county: Iași + locality: Iași + lat: 47.142349 + lng: 27.598603 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.333000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 370 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Socola + county: Iași + locality: Iași + lat: 47.1438952 + lng: 27.5969371 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.338000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 371 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Socola + county: Iași + locality: Iași + lat: 47.1232308 + lng: 27.616522 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.341000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 372 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Socola + county: Iași + locality: Iași + lat: 47.14196 + lng: 27.5997254 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.346000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 373 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Socola + county: Iași + locality: Iași + lat: 47.1432162 + lng: 27.5976658 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.350000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 374 + fields: + parent_id: null + status: 1 + street_number: '30' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1606481 + lng: 27.5989465 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.354000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 375 + fields: + parent_id: null + status: 1 + street_number: 7, bl. C4 + address: Codrescu + county: Iași + locality: Iași + lat: 47.1787735 + lng: 27.5729969 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1305.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.358000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 376 + fields: + parent_id: null + status: 1 + street_number: '93' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1593939 + lng: 27.6009174 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2210.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.366000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 377 + fields: + parent_id: null + status: 1 + street_number: '95' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1585907 + lng: 27.6016061 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2210.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.373000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 378 + fields: + parent_id: null + status: 1 + street_number: '97' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1585257 + lng: 27.6023542 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.382000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 379 + fields: + parent_id: null + status: 1 + street_number: '99' + address: T.Vladimirescu + county: Iași + locality: Iași + lat: 47.1582454 + lng: 27.6027979 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.386000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 380 + fields: + parent_id: null + status: 1 + street_number: 7D, bl. F5 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1526543 + lng: 27.5746807 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.390000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 381 + fields: + parent_id: null + status: 1 + street_number: 7C, bl. F6 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1584549 + lng: 27.6014418 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.394000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 382 + fields: + parent_id: null + status: 1 + street_number: 7G,H, bl. K1 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1537551 + lng: 27.5745603 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2332.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.398000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 383 + fields: + parent_id: null + status: 1 + street_number: 7E,F, bl. K2 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1479921 + lng: 27.5822835 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2332.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.402000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 384 + fields: + parent_id: null + status: 1 + street_number: 1A, bl. O2 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.150543 + lng: 27.5847549 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 39 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 1505.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.406000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 385 + fields: + parent_id: null + status: 1 + street_number: 6A, bl. Q2-1 + address: Str.Decebal + county: Iași + locality: Iași + lat: 47.1527951 + lng: 27.580458 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 39 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil AILlf + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1477.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.412000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 386 + fields: + parent_id: null + status: 1 + street_number: 7A, bl. C1 + address: Primaverii + county: Iași + locality: Iași + lat: 47.1487085 + lng: 27.5919612 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2250.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.420000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 387 + fields: + parent_id: null + status: 1 + street_number: 55, bl. M1 + address: Stejar + county: Iași + locality: Iași + lat: 47.16312 + lng: 27.6124129 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 130 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1715.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.428000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 388 + fields: + parent_id: null + status: 1 + street_number: 106 B, bl. G5 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.158726 + lng: 27.6175217 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3386.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.434000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 389 + fields: + parent_id: null + status: 1 + street_number: 6, bl. G6 + address: Nicolina + county: Iași + locality: Iași + lat: 47.1482389 + lng: 27.5843351 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3298.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.440000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 390 + fields: + parent_id: null + status: 1 + street_number: 2(bl. Carmen) + address: Independentei + county: Iași + locality: Iași + lat: 47.1675773 + lng: 27.5814313 + risk_category: U3 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 4067.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.444000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 391 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Th.Burada + county: Iași + locality: Iași + lat: 47.1657162 + lng: 27.584564 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 487.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.449000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 392 + fields: + parent_id: null + status: 1 + street_number: 21A, bl. A2 + address: Stejar + county: Iași + locality: Iași + lat: 47.1635623 + lng: 27.6082067 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iosif Ciehi + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 6851.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.455000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 393 + fields: + parent_id: null + status: 1 + street_number: 51, bl. C2 + address: Sos. Nationala + county: Iași + locality: Iași + lat: 47.1523799 + lng: 27.5848156 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Adrian Mihalache + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 6817.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.460000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 394 + fields: + parent_id: null + status: 1 + street_number: 4, bl. X1 + address: Titu Maiorescu + county: Iași + locality: Iași + lat: 47.17650783 + lng: 27.569695 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Adrian Mihalache + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 3666.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.468000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 395 + fields: + parent_id: null + status: 1 + street_number: 3, bl. V3 + address: Str.Tepes Voda + county: Iași + locality: Iași + lat: 47.1567463 + lng: 27.6017625 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nicolae Balan + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 1465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.477000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 396 + fields: + parent_id: null + status: 1 + street_number: 55B, bl. R2 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.14639431 + lng: 27.58790787 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Adrian Mihalache + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 6817.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.482000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 397 + fields: + parent_id: null + status: 1 + street_number: 8, bl. P2 + address: Str.Tutora + county: Iași + locality: Iași + lat: 47.1494112 + lng: 27.5933682 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3678.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.487000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 398 + fields: + parent_id: null + status: 1 + street_number: 6, bl. U2 bis + address: Plaiesilor + county: Iași + locality: Iași + lat: 47.164128 + lng: 27.5584123 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 5605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.491000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 399 + fields: + parent_id: null + status: 1 + street_number: 11, bl. X14A + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1480003 + lng: 27.5877333 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firltea + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1345.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.496000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 400 + fields: + parent_id: null + status: 1 + street_number: 25, bl. T3 + address: Primaverii + county: Iași + locality: Iași + lat: 47.1526498 + lng: 27.5985401 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 2802.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.500000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 401 + fields: + parent_id: null + status: 1 + street_number: 9, bl. R3 + address: Mircea cel Batran + county: Iași + locality: Iași + lat: 47.1559242 + lng: 27.5664335 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.507000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 402 + fields: + parent_id: null + status: 1 + street_number: 57, bl. A1 + address: Sos. Nationala + county: Iași + locality: Iași + lat: 47.1516002 + lng: 27.5865456 + risk_category: N/A + height_regime: P+M+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 4920.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.514000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 403 + fields: + parent_id: null + status: 1 + street_number: 118, bl. C1 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1574109 + lng: 27.6190932 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 5605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.522000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 404 + fields: + parent_id: null + status: 1 + street_number: 25-33, bl. C1-5 + address: Bulevardul Independentei + county: Iași + locality: Iași + lat: 47.16623 + lng: 27.58869 + risk_category: N/A + height_regime: P+M+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 152 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1982 + surface: 7202.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.530000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 405 + fields: + parent_id: null + status: 1 + street_number: 50-54, bl. H1-3 + address: 'A.Panu ' + county: Iași + locality: Iași + lat: 47.160563 + lng: 27.5893685 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 6855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.534000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 406 + fields: + parent_id: null + status: 1 + street_number: 5, bl. 12 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.1669382 + lng: 27.581386 + risk_category: N/A + height_regime: P+M+6E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 5302.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.538000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 407 + fields: + parent_id: null + status: 1 + street_number: 36, bl. B3 + address: Copou + county: Iași + locality: Iași + lat: 47.1781271 + lng: 27.5706226 + risk_category: N/A + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 53 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4933.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.544000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 408 + fields: + parent_id: null + status: 1 + street_number: 44, bl. B1 + address: Copou + county: Iași + locality: Iași + lat: 47.1790658 + lng: 27.5698621 + risk_category: N/A + height_regime: P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 53 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4933.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.549000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 409 + fields: + parent_id: null + status: 1 + street_number: 16-18, bl. 556 + address: 'Pacurari ' + county: Iași + locality: Iași + lat: 47.174873 + lng: 27.547325 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1983 + surface: 2651.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.553000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 410 + fields: + parent_id: null + status: 1 + street_number: 24, bl. T6 + address: Pacurari + county: Iași + locality: Iași + lat: 47.1751638 + lng: 27.5460346 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 55 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 4723.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.559000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 411 + fields: + parent_id: null + status: 1 + street_number: 44, bl. T5 + address: Pacurari + county: Iași + locality: Iași + lat: 47.1714203 + lng: 27.5687885 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 43 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 4243.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.567000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 412 + fields: + parent_id: null + status: 1 + street_number: 38, bl. 965 + address: Nicolina + county: Iași + locality: Iași + lat: 47.13603 + lng: 27.573835 + risk_category: N/A + height_regime: P+4-7E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1988 + surface: 2320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.574000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 413 + fields: + parent_id: null + status: 1 + street_number: bl. 977 A,B,C + address: Nicolina + county: Iași + locality: Iași + lat: 47.1118761 + lng: 27.5604214 + risk_category: N/A + height_regime: P+8(9)E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 78 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1985 + surface: 6820.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.581000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 414 + fields: + parent_id: null + status: 1 + street_number: 2, bl. 455 + address: Canta + county: Iași + locality: Iași + lat: 47.1737925 + lng: 27.550833 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 38 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1983 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.586000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 415 + fields: + parent_id: null + status: 1 + street_number: 7A, bl. E3 + address: Tutora + county: Iași + locality: Iași + lat: 47.1509133 + lng: 27.593602 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 5720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.590000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 416 + fields: + parent_id: null + status: 1 + street_number: 11, bl. E2 + address: Tutora + county: Iași + locality: Iași + lat: 47.150488 + lng: 27.593745 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 4530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.594000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 417 + fields: + parent_id: null + status: 1 + street_number: 13A, bl. E1 + address: Tutora + county: Iași + locality: Iași + lat: 47.150233 + lng: 27.5944421 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ctin Firtea + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 4530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.598000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 418 + fields: + parent_id: null + status: 1 + street_number: 7B, bl. B1 + address: Codrescu + county: Iași + locality: Iași + lat: 47.1758896 + lng: 27.5754544 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1399.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.602000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 419 + fields: + parent_id: null + status: 1 + street_number: 8A, bl. A13 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.1518292 + lng: 27.5835347 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.608000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 420 + fields: + parent_id: null + status: 1 + street_number: 13A, bl. A 7 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.14993 + lng: 27.584741 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.615000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 421 + fields: + parent_id: null + status: 1 + street_number: 15A, bl. A9 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.1499107 + lng: 27.5847419 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.624000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 422 + fields: + parent_id: null + status: 1 + street_number: 38, bl. A 17 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.1559126 + lng: 27.5752784 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.630000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 423 + fields: + parent_id: null + status: 1 + street_number: 45A, bl. 12 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1487019 + lng: 27.5811922 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.635000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 424 + fields: + parent_id: null + status: 1 + street_number: 19A, bl. A 1 + address: Primaverii + county: Iași + locality: Iași + lat: 47.1514204 + lng: 27.5963124 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1402.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.640000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 425 + fields: + parent_id: null + status: 1 + street_number: 11C, bl. E1 + address: Tutora + county: Iași + locality: Iași + lat: 47.1509896 + lng: 27.5946583 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 58 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.646000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 426 + fields: + parent_id: null + status: 1 + street_number: 26A, bl. A6 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1470413 + lng: 27.5872311 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.651000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 427 + fields: + parent_id: null + status: 1 + street_number: 28A, bl. AS + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.147074 + lng: 27.588003 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.656000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 428 + fields: + parent_id: null + status: 1 + street_number: 34A, bl. A3 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1466703 + lng: 27.5890023 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.663000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 429 + fields: + parent_id: null + status: 1 + street_number: 38A, bl. A4 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1471321 + lng: 27.5889349 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.670000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 430 + fields: + parent_id: null + status: 1 + street_number: 124A, bl. A1 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1570708 + lng: 27.6207901 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 4150.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.677000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 431 + fields: + parent_id: null + status: 1 + street_number: 14, bl. X6 + address: Al.Decebal + county: Iași + locality: Iași + lat: 47.15161 + lng: 27.5821656 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 1333.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.684000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 432 + fields: + parent_id: null + status: 1 + street_number: 24C, bl. H3 + address: Titu Maiorescu + county: Iași + locality: Iași + lat: 47.17453677 + lng: 27.56789303 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 1340.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.689000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 433 + fields: + parent_id: null + status: 1 + street_number: 2A + address: Castei + county: Iași + locality: Iași + lat: 47.1792377 + lng: 27.5705452 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 2205.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.694000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 434 + fields: + parent_id: null + status: 1 + street_number: 51A, bl. F3 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1472761 + lng: 27.5848296 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 1225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.699000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 435 + fields: + parent_id: null + status: 1 + street_number: bl. H8 + address: Roman Voda + county: Iași + locality: Iași + lat: 47.160607 + lng: 27.5662164 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virg· Aur + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 4520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.702000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 436 + fields: + parent_id: null + status: 1 + street_number: bl. H1 + address: Mircea cel Batran + county: Iași + locality: Iași + lat: 47.1558871 + lng: 27.5664891 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 4230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.706000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 437 + fields: + parent_id: null + status: 1 + street_number: 4A, bl. K1 + address: Pictorului + county: Iași + locality: Iași + lat: 47.160708 + lng: 27.611356 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 4366.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.711000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 438 + fields: + parent_id: null + status: 1 + street_number: 28, bl. T7 + address: Pacurari + county: Iași + locality: Iași + lat: 47.1751022 + lng: 27.5450751 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 65 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 4520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.718000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 439 + fields: + parent_id: null + status: 1 + street_number: 35-39, bl. S1-3 + address: Simionescu + county: Iași + locality: Iași + lat: 47.16795191 + lng: 27.54303404 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 55 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 3966.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.726000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 440 + fields: + parent_id: null + status: 1 + street_number: 4(Guliver) + address: Stefan cel Mare + county: Iași + locality: Iași + lat: 47.1644423 + lng: 27.5805939 + risk_category: N/A + height_regime: S+P+6(7)E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 115 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 6902.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.733000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 441 + fields: + parent_id: null + status: 1 + street_number: 7, bl. 23 + address: Basarabi + county: Iași + locality: Iași + lat: 47.1636395 + lng: 27.5619007 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 43 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 2530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.738000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 442 + fields: + parent_id: null + status: 1 + street_number: 38 A,B, bl. V1 + address: Ciric + county: Iași + locality: Iași + lat: 47.16395785 + lng: 27.61339385 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 5340.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.744000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 443 + fields: + parent_id: null + status: 1 + street_number: 8, bl. U1 + address: Basarabi + county: Iași + locality: Iași + lat: 47.1630687 + lng: 27.5627991 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 2530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.750000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 444 + fields: + parent_id: null + status: 1 + street_number: 4, bl. R10 + address: Procopiu + county: Iași + locality: Iași + lat: 47.1643048 + lng: 27.5548297 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 2562.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.755000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 445 + fields: + parent_id: null + status: 1 + street_number: 2A, bl. X2 + address: Al.Rozelor + county: Iași + locality: Iași + lat: 47.1495444 + lng: 27.5811743 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1366.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.760000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 446 + fields: + parent_id: null + status: 1 + street_number: 120a, bl. S5 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.1569009 + lng: 27.6197536 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.766000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 447 + fields: + parent_id: null + status: 1 + street_number: 3, bl. B5 + address: Aurora + county: Iași + locality: Iași + lat: 47.1786154 + lng: 27.5639387 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 3210.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.774000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 448 + fields: + parent_id: null + status: 1 + street_number: 1, bl. 8 + address: Cuza Voda + county: Iași + locality: Iași + lat: 47.1653301 + lng: 27.5821611 + risk_category: N/A + height_regime: P+6E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 61 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4966.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.780000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 449 + fields: + parent_id: null + status: 1 + street_number: 6, bl. 9 + address: Piata Unirii + county: Iași + locality: Iași + lat: 47.1660075 + lng: 27.5806872 + risk_category: N/A + height_regime: P+6E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 102 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.786000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 450 + fields: + parent_id: null + status: 1 + street_number: 37 A, bl. A 1 + address: Stejar + county: Iași + locality: Iași + lat: 47.163209 + lng: 27.610766 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6955.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.791000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 451 + fields: + parent_id: null + status: 1 + street_number: 138-140, bl. A 1 + address: 'Vasile Lupu ' + county: Iași + locality: Iași + lat: 47.155842 + lng: 27.6233801 + risk_category: N/A + height_regime: P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 7995.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.795000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 452 + fields: + parent_id: null + status: 1 + street_number: 128-130, bl. A2 + address: Vasile Lupu + county: Iași + locality: Iași + lat: 47.157223 + lng: 27.621485 + risk_category: N/A + height_regime: P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 7995.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.799000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 453 + fields: + parent_id: null + status: 1 + street_number: 32, bl. B7 + address: Decebal + county: Iași + locality: Iași + lat: 47.155138 + lng: 27.575151 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 2335.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.806000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 454 + fields: + parent_id: null + status: 1 + street_number: 3A, bl. J4 + address: Dr. Savini + county: Iași + locality: Iași + lat: 47.16191 + lng: 27.6156479 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 2336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.811000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 455 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Codrescu + county: Iași + locality: Iași + lat: 47.1819617 + lng: 27.5683012 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 122.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.819000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 456 + fields: + parent_id: null + status: 1 + street_number: 31, bl.B4 + address: Splai Bahlui + county: Iași + locality: Iași + lat: 47.1533657 + lng: 27.5990532 + risk_category: N/A + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2740.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.826000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 457 + fields: + parent_id: null + status: 1 + street_number: 1A 39, bl.H2 + address: Bulevardul Nicolae Iorga + county: Iași + locality: Iași + lat: 47.1548642 + lng: 27.5740128 + risk_category: N/A + height_regime: P+9E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 126 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 4102.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.833000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 458 + fields: + parent_id: null + status: 1 + street_number: 85A, bl.C3 + address: I.Creanga + county: Iași + locality: Iași + lat: 47.160598 + lng: 27.618247 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Virgil Aur + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 4566.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.838000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 459 + fields: + parent_id: null + status: 1 + street_number: bl.V6-7 + address: Str.Nicolae lorga + county: Iași + locality: Pașcani + lat: 47.249776 + lng: 26.721893 + risk_category: U2 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2418.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.845000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 460 + fields: + parent_id: null + status: 1 + street_number: nr.1, bi. P4-6 + address: Str. Closca + county: Iași + locality: Pașcani + lat: 47.2476351 + lng: 26.719011 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3864.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.851000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 461 + fields: + parent_id: null + status: 1 + street_number: 3, bl. P1 -3 + address: Str. Crisan + county: Iași + locality: Pașcani + lat: 47.2475031 + lng: 26.7178272 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: M.V.Molocea + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3864.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.865000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 462 + fields: + parent_id: null + status: 1 + street_number: '' + address: Bloc B3 + county: Iași + locality: Hârlău + lat: 47.4285072 + lng: 26.9018997 + risk_category: U3 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 1673.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.874000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 463 + fields: + parent_id: null + status: 1 + street_number: 4, bl.11 + address: Republicii + county: Iași + locality: Hârlău + lat: 47.42809358 + lng: 26.90211317 + risk_category: N/A + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 3215.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.880000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 464 + fields: + parent_id: null + status: 1 + street_number: 23, bi. A 1 + address: Petru Rares + county: Iași + locality: Târgu Frumos + lat: 47.213431 + lng: 27.00945 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Victor Mihalache + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 2268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.884000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 465 + fields: + parent_id: null + status: 1 + street_number: bloc J2 + address: Matei basarab + county: Ialomița + locality: Slobozia + lat: 44.5623194 + lng: 27.3667215 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Alexandru Hristoforov + observations: '' + has_warning_panels: null + year_built: 1981 + surface: 2280.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.900000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 466 + fields: + parent_id: null + status: 1 + street_number: Bloc 11 + address: Călărași + county: Ialomița + locality: Fetești + lat: 44.4133252 + lng: 27.8741216 + risk_category: U3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: EXPROT RON C-ȚA + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 521.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.904000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 467 + fields: + parent_id: null + status: 1 + street_number: Bloc F9 + address: Prelungirea Grâușor + county: Ialomița + locality: Fetești + lat: 44.40893564 + lng: 27.82649682 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: EXPROT RON C-ȚA + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 226.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.907000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 468 + fields: + parent_id: null + status: 1 + street_number: Bloc MAN3 + address: Călărași + county: Ialomița + locality: Fetești + lat: 44.40998838 + lng: 27.82681758 + risk_category: U3 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: SIGMA PROIECT + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.914000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 469 + fields: + parent_id: null + status: 1 + street_number: Bloc 9 + address: Călărași + county: Ialomița + locality: Fetești + lat: 44.41077821 + lng: 27.82625643 + risk_category: U3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: METROU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.921000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 470 + fields: + parent_id: null + status: 1 + street_number: bloc D + address: C. Racoviță + county: Galați + locality: Tecuci + lat: 45.8455215 + lng: 27.4266792 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Coșovliu Octavian + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 1666.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.943000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 471 + fields: + parent_id: null + status: 1 + street_number: bloc C + address: C. Racoviță + county: Galați + locality: Tecuci + lat: 45.8455215 + lng: 27.4266792 + risk_category: RS1 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. Rusu Aneta + observations: '' + has_warning_panels: false + year_built: 1963 + surface: 1710.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.947000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 472 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Cuza Vodă + county: Galați + locality: Galați + lat: 45.4411893 + lng: 28.0577678 + risk_category: RS3 + height_regime: D+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 626.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.951000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 473 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Democrației + county: Galați + locality: Galați + lat: 45.4336945 + lng: 28.0473762 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Balan M. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 126.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.956000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 474 + fields: + parent_id: null + status: 1 + street_number: 89 (corp C) + address: Dogăriei + county: Galați + locality: Galați + lat: 45.437466 + lng: 28.0599076 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 156.95 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.962000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 475 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Bălcescu + county: Galați + locality: Galați + lat: 45.4369727 + lng: 28.0521701 + risk_category: RS1 + height_regime: D+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1004.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.969000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 476 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Univeristății + county: Galați + locality: Galați + lat: 45.4388975 + lng: 28.0552466 + risk_category: RS1 + height_regime: D+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.976000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 477 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Brăilei + county: Galați + locality: Galați + lat: 45.4335168 + lng: 28.0522971 + risk_category: RS1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 260.48 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.983000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 478 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Tecuci + county: Galați + locality: Galați + lat: 45.4373795 + lng: 28.0491235 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1860 + surface: 637.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.988000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 479 + fields: + parent_id: null + status: 1 + street_number: '210' + address: Traian + county: Galați + locality: Galați + lat: 45.4471274 + lng: 28.0452008 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 163.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.993000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 480 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Zânelor + county: Galați + locality: Galați + lat: 45.43483361 + lng: 28.04635955 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 117.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:15.997000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 481 + fields: + parent_id: null + status: 1 + street_number: 31-33 + address: Carnabel + county: Galați + locality: Galați + lat: 45.4413454 + lng: 28.0494461 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 372.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.001000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 482 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Morilor + county: Galați + locality: Galați + lat: 45.4351327 + lng: 28.0386974 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 640.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.005000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 483 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Florilor + county: Galați + locality: Galați + lat: 45.45447444 + lng: 28.05299025 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Rusu D. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 47.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.011000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 484 + fields: + parent_id: null + status: 1 + street_number: '34' + address: N. Bălcescu + county: Galați + locality: Galați + lat: 45.4371751 + lng: 28.0529041 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 599.05 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.020000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 485 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Sf. Spiridon + county: Galați + locality: Galați + lat: 45.433259 + lng: 28.0511131 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 932.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.027000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 486 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Caragiale + county: Galați + locality: Galați + lat: 45.4326523 + lng: 28.0449953 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 165.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.033000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 487 + fields: + parent_id: null + status: 1 + street_number: '29' + address: I. Fotea + county: Galați + locality: Galați + lat: 45.4376275 + lng: 28.0527231 + risk_category: RS2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 573.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.040000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 488 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Războieni + county: Galați + locality: Galați + lat: 45.4411032 + lng: 28.0437275 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 115.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.044000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 489 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Culturii + county: Galați + locality: Galați + lat: 45.4431209 + lng: 28.0543223 + risk_category: RS2 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.050000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 490 + fields: + parent_id: null + status: 1 + street_number: 101 (Nord) + address: Tecuci + county: Galați + locality: Galați + lat: 45.4396987 + lng: 28.0338462 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: null + surface: 30.69 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.055000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 491 + fields: + parent_id: null + status: 1 + street_number: 8 (2 corpuri) + address: Eroilor + county: Galați + locality: Galați + lat: 45.4404025 + lng: 28.0551687 + risk_category: RS1 + height_regime: Dpartial+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 428.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.062000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 492 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Cuza + county: Galați + locality: Galați + lat: 45.4404117 + lng: 28.0571864 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 292.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.069000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 493 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Dogăriei + county: Galați + locality: Galați + lat: 45.4341017 + lng: 28.0599338 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 175.23 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.079000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 494 + fields: + parent_id: null + status: 1 + street_number: '73' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4356272 + lng: 28.042681 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 75.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.084000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 495 + fields: + parent_id: null + status: 1 + street_number: '76' + address: N. Bălcescu + county: Galați + locality: Galați + lat: 45.4413088 + lng: 28.0522554 + risk_category: RS1 + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1985 + surface: 478.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.089000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 496 + fields: + parent_id: null + status: 1 + street_number: 21(C) + address: N. Bălcescu + county: Galați + locality: Galați + lat: 45.4377024 + lng: 28.0525212 + risk_category: RS1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1122.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.095000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 497 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Caragiale + county: Galați + locality: Galați + lat: 45.4325659 + lng: 28.0445733 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.099000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 498 + fields: + parent_id: null + status: 1 + street_number: '88' + address: Dogăriei + county: Galați + locality: Galați + lat: 45.4388982 + lng: 28.0598413 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 538.84 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.105000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 499 + fields: + parent_id: null + status: 1 + street_number: 13 A + address: Holban + county: Galați + locality: Galați + lat: 45.4426269 + lng: 28.0527125 + risk_category: RS3 + height_regime: Dpartial+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.109000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 500 + fields: + parent_id: null + status: 1 + street_number: 15 3 copuri + address: Muzicii + county: Galați + locality: Galați + lat: 45.43680149 + lng: 28.04215978 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 209.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.117000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 501 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Muzicii + county: Galați + locality: Galați + lat: 45.437275 + lng: 28.0389493 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 123.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.125000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 502 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Leului + county: Galați + locality: Galați + lat: 45.4363928 + lng: 28.0662581 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 286.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.132000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 503 + fields: + parent_id: null + status: 1 + street_number: 49 2 corpuri + address: Cuza + county: Galați + locality: Galați + lat: 45.4404146 + lng: 28.0574441 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 351.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.137000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 504 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Basarabiei + county: Galați + locality: Galați + lat: 45.4406522 + lng: 28.0294981 + risk_category: N/A + height_regime: Spartial+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 166.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.142000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 505 + fields: + parent_id: null + status: 1 + street_number: '84' + address: Democrației + county: Galați + locality: Galați + lat: 45.436691 + lng: 28.0496435 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 330.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.148000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 506 + fields: + parent_id: null + status: 1 + street_number: '25' + address: I. Fotea + county: Galați + locality: Galați + lat: 45.4375267 + lng: 28.0535761 + risk_category: RS2 + height_regime: D+P+1Epartial + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1860 + surface: 490.46 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.152000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 507 + fields: + parent_id: null + status: 1 + street_number: '57' + address: N. Alexandrescu + county: Galați + locality: Galați + lat: 45.4420355 + lng: 28.0455266 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.157000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 508 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Cuza + county: Galați + locality: Galați + lat: 45.4501395 + lng: 28.0365483 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1843 + surface: 524.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.164000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 509 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Arieșului + county: Galați + locality: Galați + lat: 45.4385953 + lng: 28.0516022 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 550.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.172000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 510 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Parcului + county: Galați + locality: Galați + lat: 45.4532895 + lng: 28.0517784 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 74.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.179000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 511 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Dr. Carnabel + county: Galați + locality: Galați + lat: 45.4406432 + lng: 28.0494462 + risk_category: RS1 + height_regime: Spartial+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 175.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.185000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 512 + fields: + parent_id: null + status: 1 + street_number: '129' + address: Traian + county: Galați + locality: Galați + lat: 45.4443706 + lng: 28.0462356 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: null + surface: 31.56 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.190000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 513 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Cuza + county: Galați + locality: Galați + lat: 45.4400725 + lng: 28.0576183 + risk_category: RS1 + height_regime: D+P+1Epartial + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 180.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.194000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 514 + fields: + parent_id: null + status: 1 + street_number: 13 b + address: Univeristății + county: Galați + locality: Galați + lat: 45.4389655 + lng: 28.0547128 + risk_category: RS2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 582.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.201000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 515 + fields: + parent_id: null + status: 1 + street_number: '124' + address: Domnească + county: Galați + locality: Galați + lat: 45.4309966 + lng: 28.0551982 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 159.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.206000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 516 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Bălcescu + county: Galați + locality: Galați + lat: 45.4400923 + lng: 28.0520622 + risk_category: RS2 + height_regime: P + Mansardă + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 54.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.212000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 517 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Logofăt Tăutu + county: Galați + locality: Galați + lat: 45.4360144 + lng: 28.0570494 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Zbirnea + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 77.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.221000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 518 + fields: + parent_id: null + status: 1 + street_number: '60' + address: Movilei + county: Galați + locality: Galați + lat: 45.4395735 + lng: 28.0427328 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 165.66 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.230000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 519 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Cuza + county: Galați + locality: Galați + lat: 45.4373971 + lng: 28.0584797 + risk_category: RS1 + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 570.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.236000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 520 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Zânelor + county: Galați + locality: Galați + lat: 45.4353208 + lng: 28.0079945 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 116.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.242000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 521 + fields: + parent_id: null + status: 1 + street_number: '222' + address: Traian + county: Galați + locality: Galați + lat: 45.4478569 + lng: 28.0448439 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 113.86 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.247000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 522 + fields: + parent_id: null + status: 1 + street_number: '126' + address: Domnească + county: Galați + locality: Galați + lat: 45.4497057 + lng: 28.0524745 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 113.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.252000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 523 + fields: + parent_id: null + status: 1 + street_number: 21-23 + address: Dr. Carnabel + county: Galați + locality: Galați + lat: 45.4407518 + lng: 28.0493931 + risk_category: RS1 + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 854.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.257000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 524 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Războieni + county: Galați + locality: Galați + lat: 45.4435609 + lng: 28.0425822 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 40.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.264000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 525 + fields: + parent_id: null + status: 1 + street_number: 94 (corp B) + address: Domnească + county: Galați + locality: Galați + lat: 45.4455836 + lng: 28.0550312 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 345.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.272000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 526 + fields: + parent_id: null + status: 1 + street_number: 52, 52 A + address: Domnească + county: Galați + locality: Galați + lat: 45.4401058 + lng: 28.056556 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.280000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 527 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Dogăriei + county: Galați + locality: Galați + lat: 45.4376923 + lng: 28.0600634 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 184.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.285000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 528 + fields: + parent_id: null + status: 1 + street_number: 81-83 + address: N. Alexandrescu + county: Galați + locality: Galați + lat: 45.4431275 + lng: 28.0448747 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 207.19 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.292000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 529 + fields: + parent_id: null + status: 1 + street_number: '110' + address: 'Traian ' + county: Galați + locality: Galați + lat: 45.4431092 + lng: 28.0471481 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 243.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.298000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 530 + fields: + parent_id: null + status: 1 + street_number: '387' + address: Traian + county: Galați + locality: Galați + lat: 45.4641277 + lng: 28.0361695 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1860 + surface: 238.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.303000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 531 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Domnească + county: Galați + locality: Galați + lat: 45.43602 + lng: 28.0562501 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.307000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 532 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Grădina Veche + county: Galați + locality: Galați + lat: 45.4495695 + lng: 28.0478441 + risk_category: RS2 + height_regime: Dpartial+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 171.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.313000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 533 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Cuza + county: Galați + locality: Galați + lat: 45.4378153 + lng: 28.0582492 + risk_category: RS2 + height_regime: P+E+Spartial + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1869 + surface: 673.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.322000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 534 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Florilor + county: Galați + locality: Galați + lat: 45.454821 + lng: 28.0530827 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 376.33 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.329000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 535 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Muzicii + county: Galați + locality: Galați + lat: 45.4374185 + lng: 28.0388692 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 57.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.336000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 536 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Dogăriei + county: Galați + locality: Galați + lat: 45.4347226 + lng: 28.060074 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 163.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.341000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 537 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Săliștei + county: Galați + locality: Galați + lat: 45.4343595 + lng: 28.0609596 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Bălan D. + observations: '' + has_warning_panels: null + year_built: null + surface: 51.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.344000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 538 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Tecuci + county: Galați + locality: Galați + lat: 45.4396987 + lng: 28.0338462 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 196.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.349000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 539 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Tecuci + county: Galați + locality: Galați + lat: 45.437868 + lng: 28.044935 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 430.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.354000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 540 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Tecuci + county: Galați + locality: Galați + lat: 45.4379773 + lng: 28.044287 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 61.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.360000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 541 + fields: + parent_id: null + status: 1 + street_number: '37' + address: N. Bălcescu + county: Galați + locality: Galați + lat: 45.4400923 + lng: 28.0520622 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 254.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.367000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 542 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Ana Ipătescu + county: Galați + locality: Galați + lat: 45.4394801 + lng: 28.0639223 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: null + surface: 416.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.375000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 543 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Traian + county: Galați + locality: Galați + lat: 45.4343333 + lng: 28.0512758 + risk_category: RS2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 705.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.384000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 544 + fields: + parent_id: null + status: 1 + street_number: '112' + address: Traian + county: Galați + locality: Galați + lat: 45.4394062 + lng: 28.0491484 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 304.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.390000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 545 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Cuza + county: Galați + locality: Galați + lat: 45.4373861 + lng: 28.0581662 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: 1845 + surface: 364.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.395000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 546 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Zânelor + county: Galați + locality: Galați + lat: 45.43557388 + lng: 28.04693782 + risk_category: RS1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 261.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.400000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 547 + fields: + parent_id: null + status: 1 + street_number: '118' + address: N. Bălcescu + county: Galați + locality: Galați + lat: 45.4447065 + lng: 28.0512392 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.403000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 548 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Grădina Veche + county: Galați + locality: Galați + lat: 45.444902 + lng: 28.050387 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 178.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.408000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 549 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Muzicii + county: Galați + locality: Galați + lat: 45.4368673 + lng: 28.0426688 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Bușilă C + observations: '' + has_warning_panels: null + year_built: null + surface: 100.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.416000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 550 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Română + county: Galați + locality: Galați + lat: 45.43694692 + lng: 28.04364724 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.423000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 551 + fields: + parent_id: null + status: 1 + street_number: '114' + address: Traian + county: Galați + locality: Galați + lat: 45.4397329 + lng: 28.0490545 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 400.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.430000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 552 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Eroilor + county: Galați + locality: Galați + lat: 45.4402324 + lng: 28.0536037 + risk_category: RS1 + height_regime: Dpartial P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 471.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.434000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 553 + fields: + parent_id: null + status: 1 + street_number: '26' + address: I. Fotea + county: Galați + locality: Galați + lat: 45.4378122 + lng: 28.0547966 + risk_category: RS1 + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 78.14 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.438000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 554 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Cuza + county: Galați + locality: Galați + lat: 45.4384831 + lng: 28.0580656 + risk_category: RS1 + height_regime: S+P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1859 + surface: 545.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.443000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 555 + fields: + parent_id: null + status: 1 + street_number: '133' + address: Domneasca + county: Galați + locality: Galați + lat: 45.4493835 + lng: 28.0522164 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Bușilă C. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 377.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.450000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 556 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Columb + county: Galați + locality: Galați + lat: 45.4341823 + lng: 28.0460396 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 769.94 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.456000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 557 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Cuza + county: Galați + locality: Galați + lat: 45.4508678 + lng: 28.0366615 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 198.62 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.463000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 558 + fields: + parent_id: null + status: 1 + street_number: bloc R1 + address: Navelor + county: Galați + locality: Galați + lat: 45.4313436 + lng: 28.0579068 + risk_category: RS2 + height_regime: D+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2847.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.476000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 559 + fields: + parent_id: null + status: 1 + street_number: Bloc C32 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.4214 + lng: 28.03399 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3928.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.486000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 560 + fields: + parent_id: null + status: 1 + street_number: Bloc I / Micro 17 + address: Strada Oltului + county: Galați + locality: Galați + lat: 45.42614 + lng: 28.01684 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 72 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 5000.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.490000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 561 + fields: + parent_id: null + status: 1 + street_number: Bloc C31 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.42342 + lng: 28.03856 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3823.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.494000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 562 + fields: + parent_id: null + status: 1 + street_number: Bloc M19 / Micro 19 + address: Strada Oțelarilor + county: Galați + locality: Galați + lat: 45.41531 + lng: 28.01952 + risk_category: RS1 + height_regime: P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 12111.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.498000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 563 + fields: + parent_id: null + status: 1 + street_number: Bloc C35 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.41991 + lng: 28.03352 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3928.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.503000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 564 + fields: + parent_id: null + status: 1 + street_number: Bloc C30 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.42314 + lng: 28.03816 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3928.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.508000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 565 + fields: + parent_id: null + status: 1 + street_number: Bloc C13 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.42278 + lng: 28.03281 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3806.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.515000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 566 + fields: + parent_id: null + status: 1 + street_number: 18, bl. F + address: Domnească + county: Galați + locality: Galați + lat: 45.4346074 + lng: 28.0555108 + risk_category: RS1 + height_regime: S+P+3+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.523000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 567 + fields: + parent_id: null + status: 1 + street_number: Bloc C34 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.42039 + lng: 28.03365 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3928.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.531000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 568 + fields: + parent_id: null + status: 1 + street_number: Bloc C15 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.42587 + lng: 28.0341 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3806.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.537000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 569 + fields: + parent_id: null + status: 1 + street_number: bloc C + address: Domnească + county: Galați + locality: Galați + lat: 45.4357404 + lng: 28.0550029 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.542000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 570 + fields: + parent_id: null + status: 1 + street_number: Bloc D2 / Țiglina I + address: Strada Mărului + county: Galați + locality: Galați + lat: 45.42526 + lng: 28.02726 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 5106.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.546000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 571 + fields: + parent_id: null + status: 1 + street_number: Bloc C12 / Țiglina I + address: Strada Regiment 11 Siret + county: Galați + locality: Galați + lat: 45.4239 + lng: 28.03293 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3806.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.551000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 572 + fields: + parent_id: null + status: 1 + street_number: Bloc G4 / Micro 19 + address: Strada Laminoriștilor + county: Galați + locality: Galați + lat: 45.41729 + lng: 28.02141 + risk_category: RS1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 285 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 4575.32 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.556000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 573 + fields: + parent_id: null + status: 1 + street_number: Bloc R / Micro 17 + address: Strada Barboși + county: Galați + locality: Galați + lat: 45.4216 + lng: 28.0128 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Mohor E. + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3982.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.563000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 574 + fields: + parent_id: null + status: 1 + street_number: '52' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4349877 + lng: 28.045019 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 189.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.570000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 575 + fields: + parent_id: null + status: 1 + street_number: '53' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4349212 + lng: 28.0448312 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.578000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 576 + fields: + parent_id: null + status: 1 + street_number: '54' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4349705 + lng: 28.045092 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.584000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 577 + fields: + parent_id: null + status: 1 + street_number: '55' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.434924 + lng: 28.0448504 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 65.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.589000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 578 + fields: + parent_id: null + status: 1 + street_number: '56' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4350138 + lng: 28.0449601 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 94.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.593000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 579 + fields: + parent_id: null + status: 1 + street_number: '57' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4349422 + lng: 28.0447039 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 177.71 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.597000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 580 + fields: + parent_id: null + status: 1 + street_number: '58' + address: M. Eminescu + county: Galați + locality: Galați + lat: 45.4350639 + lng: 28.0448242 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 76.38 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.601000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 581 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Livezeni + county: Galați + locality: Galați + lat: 45.4351139 + lng: 28.044668 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 85.12 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.607000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 582 + fields: + parent_id: null + status: 1 + street_number: '134' + address: Războieni + county: Galați + locality: Galați + lat: 45.4491689 + lng: 28.0397262 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 151.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.614000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 583 + fields: + parent_id: null + status: 1 + street_number: '27' + address: I. Fotea + county: Galați + locality: Galați + lat: 45.4375884 + lng: 28.0531472 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.623000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 584 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Democrației + county: Galați + locality: Galați + lat: 45.433431 + lng: 28.0472634 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Coșovliu O. + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.631000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 585 + fields: + parent_id: null + status: 1 + street_number: Micro 8, Bl.4 + address: str.Nuferilor + county: Dâmbovița + locality: Targoviste + lat: 44.925738 + lng: 25.461982 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stoica Nicolae + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 3952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.648000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 586 + fields: + parent_id: null + status: 1 + street_number: Micro 4, Bl.18 + address: str.Radu cel Mare + county: Dâmbovița + locality: Targoviste + lat: 44.9312087 + lng: 25.4484528 + risk_category: U3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stoica Nicolae + observations: '' + has_warning_panels: null + year_built: 1978 + surface: 3141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.653000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 587 + fields: + parent_id: null + status: 1 + street_number: Micro 4, Bl.31 + address: str.Fluturilor + county: Dâmbovița + locality: Targoviste + lat: 44.9329889 + lng: 25.4477084 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stoica Nicolae + observations: '' + has_warning_panels: null + year_built: 1978 + surface: 4881.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.657000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 588 + fields: + parent_id: null + status: 1 + street_number: Bl.39B + address: Bd.Unirii + county: Dâmbovița + locality: Targoviste + lat: 44.92749745 + lng: 25.44030687 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 7057.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.663000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 589 + fields: + parent_id: null + status: 1 + street_number: Bl.40 + address: Bd.Unirii + county: Dâmbovița + locality: Targoviste + lat: 44.92667659 + lng: 25.43979105 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 7057.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.670000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 590 + fields: + parent_id: null + status: 1 + street_number: Bl.41 + address: Bd.Unirii + county: Dâmbovița + locality: Targoviste + lat: 44.92624183 + lng: 25.44017219 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 7057.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.677000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 591 + fields: + parent_id: null + status: 1 + street_number: Bl.42 + address: Bd.Unirii + county: Dâmbovița + locality: Targoviste + lat: 44.92577708 + lng: 25.44052157 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 7057.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.684000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 592 + fields: + parent_id: null + status: 1 + street_number: Bl.50 + address: Bd.Unirii + county: Dâmbovița + locality: Targoviste + lat: 44.92410141 + lng: 25.44259557 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 7057.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.690000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 593 + fields: + parent_id: null + status: 1 + street_number: Bl.16C + address: Aleea Trandafirilor + county: Dâmbovița + locality: Targoviste + lat: 44.916808 + lng: 25.460464 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1976.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.694000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 594 + fields: + parent_id: null + status: 1 + street_number: Bl.16AB + address: Aleea Trandafirilor + county: Dâmbovița + locality: Targoviste + lat: 44.916808 + lng: 25.460464 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.699000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 595 + fields: + parent_id: null + status: 1 + street_number: Bl.6BC + address: Aleea Trandafirilor + county: Dâmbovița + locality: Targoviste + lat: 44.9177899 + lng: 25.45757 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.705000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 596 + fields: + parent_id: null + status: 1 + street_number: Bl.24 + address: Strada Vasile Florescu + county: Dâmbovița + locality: Targoviste + lat: 44.9306319 + lng: 25.4537895 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Pretorian Alexandrina + observations: '' + has_warning_panels: null + year_built: 1978 + surface: 4757.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.710000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 597 + fields: + parent_id: null + status: 1 + street_number: Bl.10C + address: Aleea Trandafirilor + county: Dâmbovița + locality: Targoviste + lat: 44.917522 + lng: 25.458796 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Iliescu Elena + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1353.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.716000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 598 + fields: + parent_id: null + status: 1 + street_number: Bl.22 + address: str.Radu Popescu + county: Dâmbovița + locality: Targoviste + lat: 44.9329873 + lng: 25.4447751 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Căpăţână Dan + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 3580.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.725000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 599 + fields: + parent_id: null + status: 1 + street_number: Micro 2, Bl.18A,B + address: str.Saturn + county: Dâmbovița + locality: Moreni + lat: 44.9835936 + lng: 25.6479795 + risk_category: U3 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Bălan Cristian + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 2147.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.732000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 600 + fields: + parent_id: null + status: 1 + street_number: Bl.18 + address: Bd. Trandafirilor + county: Dâmbovița + locality: Pucioasa + lat: 45.069933 + lng: 25.435697 + risk_category: N/A + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Apostolescu I. Vlăstar + observations: '' + has_warning_panels: null + year_built: 1953 + surface: 459.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.736000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 601 + fields: + parent_id: null + status: 1 + street_number: BL.5 + address: Aleea Teilor + county: Dâmbovița + locality: Fieni + lat: 45.1337 + lng: 25.42327 + risk_category: N/A + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Apostolescu I. Vlăstar + observations: '' + has_warning_panels: null + year_built: 1953 + surface: 1140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.713000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 602 + fields: + parent_id: null + status: 1 + street_number: nr 11, bl 25 + address: Str. Dealului + county: Covasna + locality: Sf. Gheorghe + lat: 45.857576 + lng: 25.775187 + risk_category: RS1 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 69 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: SC Tectonplan SRL Nagy Bela nr 01954 + observations: '' + has_warning_panels: false + year_built: 1976 + surface: 5952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.729000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 603 + fields: + parent_id: null + status: 1 + street_number: '12' + address: str. Vasile Goldiș + county: Covasna + locality: Sf. Gheorghe + lat: 45.859654 + lng: 25.7796764 + risk_category: RS3 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: dr. Szabo Balint aut 779/90 + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 2339.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.739000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 604 + fields: + parent_id: null + status: 1 + street_number: '1' + address: str Muzelor + county: Covasna + locality: Sf. Gheorghe + lat: 45.8626299 + lng: 25.7791065 + risk_category: U1 + height_regime: P+11 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 216 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: SC Arhing SRL dr. Szekeres Gero nr 305 + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 19646.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.746000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 605 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Plantelor + county: Constanța + locality: Hîrșova + lat: 44.6901208 + lng: 27.9414525 + risk_category: RS1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Gramescu Ana Maria + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 4443.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.767000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 606 + fields: + parent_id: null + status: 1 + street_number: 17, bl. E2 Sc A+B + address: Panait Cerna + county: Constanța + locality: Cernavodă + lat: 44.3326143 + lng: 28.0362328 + risk_category: RS1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Conf. dr. ing. Paul Ioan + observations: '' + has_warning_panels: false + year_built: 1984 + surface: 915.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.774000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 607 + fields: + parent_id: null + status: 1 + street_number: 15, bl. E4 Sc A+B + address: Panait Cerna + county: Constanța + locality: Cernavodă + lat: 44.332541 + lng: 28.036351 + risk_category: RS1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Conf. dr. ing. Paul Ioan + observations: '' + has_warning_panels: false + year_built: 1984 + surface: 915.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.780000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 608 + fields: + parent_id: null + status: 1 + street_number: 20 (Scoala Nr. 5) + address: Oituz + county: Constanța + locality: Mangalia + lat: 43.81064164 + lng: 28.58245673 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 0 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: null + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.787000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 609 + fields: + parent_id: null + status: 1 + street_number: '11' + address: 'Mihai Viteazu ' + county: Constanța + locality: Mangalia + lat: 43.8125723 + lng: 28.581808 + risk_category: RS2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 0 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.795000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 610 + fields: + parent_id: null + status: 1 + street_number: 20 (Colegiul Economic) + address: Oituz + county: Constanța + locality: Mangalia + lat: 43.8120483 + lng: 28.58055066 + risk_category: RS2 + height_regime: S+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 0 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: null + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.802000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 611 + fields: + parent_id: null + status: 1 + street_number: 58 (SC. Gen. nr.1 , Corp B) + address: Matei Basarab + county: Constanța + locality: Mangalia + lat: 43.8193697 + lng: 28.5689345 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.808000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 612 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Delfinului + county: Constanța + locality: Mangalia + lat: 43.8092319 + lng: 28.5799803 + risk_category: RS2 + height_regime: P+1+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 0 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.812000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 613 + fields: + parent_id: null + status: 1 + street_number: 52 (SC. Gen. nr.1 , Corp C) + address: Matei Basarab + county: Constanța + locality: Mangalia + lat: 43.8190144 + lng: 28.5723851 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: null + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1957 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.816000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 614 + fields: + parent_id: null + status: 1 + street_number: 15 Bl L + address: Podgorilor + county: Constanța + locality: Medgidia + lat: 44.2454688 + lng: 28.258691 + risk_category: RS2 + height_regime: S+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1951 + surface: 1224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.820000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 615 + fields: + parent_id: null + status: 1 + street_number: Bl. 13 + address: Vinatorilor + county: Constanța + locality: Medgidia + lat: 44.243965 + lng: 28.2555157 + risk_category: RS2 + height_regime: S+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 68 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 3324.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.824000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 616 + fields: + parent_id: null + status: 1 + street_number: 73, Camin C1 + address: Independentei + county: Constanța + locality: Medgidia + lat: 44.26035578 + lng: 28.26241458 + risk_category: RS3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 200 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 3290.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.829000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 617 + fields: + parent_id: null + status: 1 + street_number: 73, Camin C2 + address: Independentei + county: Constanța + locality: Medgidia + lat: 44.26058945 + lng: 28.26235276 + risk_category: RS3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 200 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 3290.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.836000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 618 + fields: + parent_id: null + status: 1 + street_number: 73, Camin C3 + address: Independentei + county: Constanța + locality: Medgidia + lat: 44.26084525 + lng: 28.26234589 + risk_category: RS4 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 200 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 3793.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.845000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 619 + fields: + parent_id: null + status: 1 + street_number: 73, Camin C4 + address: Independentei + county: Constanța + locality: Medgidia + lat: 44.26105186 + lng: 28.26231842 + risk_category: RS4 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 200 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 3115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.852000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 620 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Stefan cel Mare + county: Constanța + locality: Constanța + lat: 44.1789664 + lng: 28.6483322 + risk_category: RS1 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: false + year_built: 1931 + surface: 292.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.858000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 621 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Gen. Manu + county: Constanța + locality: Constanța + lat: 44.1810562 + lng: 28.6465992 + risk_category: RS1 + height_regime: D+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: false + year_built: 1938 + surface: 702.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.864000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 622 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Calatis + county: Constanța + locality: Constanța + lat: 44.176115 + lng: 28.656826 + risk_category: RS1 + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: false + year_built: 1922 + surface: 270.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.868000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 623 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Mercur + county: Constanța + locality: Constanța + lat: 44.176682 + lng: 28.643745 + risk_category: RS1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 1096.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.873000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 624 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Traian + county: Constanța + locality: Constanța + lat: 44.175176 + lng: 28.654876 + risk_category: RS1 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: In. Anton Cotofana + observations: '' + has_warning_panels: false + year_built: 1932 + surface: 921.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.880000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 625 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Arhiepiscopiei + county: Constanța + locality: Constanța + lat: 44.1725342 + lng: 28.6602197 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1917 + surface: 111.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.887000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 626 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Arhiepiscopiei + county: Constanța + locality: Constanța + lat: 44.1723635 + lng: 28.6600191 + risk_category: N/A + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 766.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.895000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 627 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Aristide Karatzali + county: Constanța + locality: Constanța + lat: 44.1770894 + lng: 28.6566392 + risk_category: N/A + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 1100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.903000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 628 + fields: + parent_id: null + status: 1 + street_number: '14' + address: C-tin Bratescu + county: Constanța + locality: Constanța + lat: 44.1826137 + lng: 28.6459354 + risk_category: N/A + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 956.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.907000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 629 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Calatis + county: Constanța + locality: Constanța + lat: 44.1765441 + lng: 28.6582601 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 579.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.912000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 630 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Vasile Canarache + county: Constanța + locality: Constanța + lat: 44.1739148 + lng: 28.6569072 + risk_category: N/A + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1398.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.916000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 631 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Cpt. Petre Romulus + county: Constanța + locality: Constanța + lat: 44.1776709 + lng: 28.644706 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 72.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.920000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 632 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Chiliei + county: Constanța + locality: Constanța + lat: 44.1930295 + lng: 28.6469852 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.925000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 633 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Cuza-Voda + county: Constanța + locality: Constanța + lat: 44.1772869 + lng: 28.6474061 + risk_category: RS2 + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 498.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.930000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 634 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Cuza-Voda + county: Constanța + locality: Constanța + lat: 44.1779712 + lng: 28.6485577 + risk_category: RS3 + height_regime: P+1E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.937000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 635 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Dimitrie Cantemir + county: Constanța + locality: Constanța + lat: 44.1754037 + lng: 28.657746 + risk_category: N/A + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 1692.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.945000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 636 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Dragoslavelor + county: Constanța + locality: Constanța + lat: 44.201851 + lng: 28.6457214 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Ionescu Dumitrel + observations: Autodemolat + has_warning_panels: null + year_built: 1902 + surface: 26.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.951000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 637 + fields: + parent_id: null + status: 1 + street_number: '68' + address: 'Ferdinand ' + county: Constanța + locality: Constanța + lat: 44.1745724 + lng: 28.6430943 + risk_category: N/A + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.956000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 638 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Gen. Manu + county: Constanța + locality: Constanța + lat: 44.1808409 + lng: 28.6465189 + risk_category: RS4 + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1916 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.961000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 639 + fields: + parent_id: null + status: 1 + street_number: '3' + address: George Enescu + county: Constanța + locality: Constanța + lat: 44.1766623 + lng: 28.6466369 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1918 + surface: 137.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.965000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 640 + fields: + parent_id: null + status: 1 + street_number: '16' + address: George Enescu + county: Constanța + locality: Constanța + lat: 44.1779646 + lng: 28.6453937 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1916 + surface: 56.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.969000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 641 + fields: + parent_id: null + status: 1 + street_number: '9' + address: 'Grivitei ' + county: Constanța + locality: Constanța + lat: 44.1767321 + lng: 28.6428468 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 316.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.975000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 642 + fields: + parent_id: null + status: 1 + street_number: '36' + address: 'Grivitei ' + county: Constanța + locality: Constanța + lat: 44.1768095 + lng: 28.643883 + risk_category: N/A + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 798.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.981000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 643 + fields: + parent_id: null + status: 1 + street_number: '26' + address: I.G. Duca + county: Constanța + locality: Constanța + lat: 44.1782267 + lng: 28.640425 + risk_category: RS2 + height_regime: (partial beci) + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.989000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 644 + fields: + parent_id: null + status: 1 + street_number: '32' + address: I.G. Duca + county: Constanța + locality: Constanța + lat: 44.1789192 + lng: 28.6394821 + risk_category: RS2 + height_regime: P+1E (partial) + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 407.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:16.996000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 645 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Ilarie Voronca + county: Constanța + locality: Constanța + lat: 44.1771741 + lng: 28.6468271 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.004000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 646 + fields: + parent_id: null + status: 1 + street_number: '59' + address: 'Ion Corvin ' + county: Constanța + locality: Constanța + lat: 44.178862 + lng: 28.6331379 + risk_category: N/A + height_regime: P+2E (partial) + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 167.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.010000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 647 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Jupiter + county: Constanța + locality: Constanța + lat: 44.1754525 + lng: 28.6443405 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 229.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.016000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 648 + fields: + parent_id: null + status: 1 + street_number: 7A + address: Jupiter + county: Constanța + locality: Constanța + lat: 44.1598013 + lng: 28.6348138 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1991 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 85.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.020000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 649 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Jupiter + county: Constanța + locality: Constanța + lat: 43.8579973 + lng: 28.6026645 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 300.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.026000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 650 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Kricor Zambaccian + county: Constanța + locality: Constanța + lat: 44.176859 + lng: 28.6581079 + risk_category: RS2 + height_regime: D+P+1E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Ing. Virgil Breaban + observations: Monument arhitectura + has_warning_panels: null + year_built: 1899 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.032000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 651 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Mercur + county: Constanța + locality: Constanța + lat: 44.1765455 + lng: 28.6439707 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.039000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 652 + fields: + parent_id: null + status: 1 + street_number: '58' + address: 'Mihai Viteazu ' + county: Constanța + locality: Constanța + lat: 44.181443 + lng: 28.6428191 + risk_category: N/A + height_regime: P+1E (partial) + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.047000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 653 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Mihail Kogalniceanu + county: Constanța + locality: Constanța + lat: 44.1783489 + lng: 28.6535037 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 506.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.054000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 654 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Mihail Kogalniceanu + county: Constanța + locality: Constanța + lat: 44.1798838 + lng: 28.6516278 + risk_category: N/A + height_regime: D+P+1E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1511.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.059000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 655 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Mihail Kogalniceanu + county: Constanța + locality: Constanța + lat: 44.1799681 + lng: 28.651648 + risk_category: N/A + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 702.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.064000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 656 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Mihail Kogalniceanu + county: Constanța + locality: Constanța + lat: 44.1800836 + lng: 28.6516159 + risk_category: N/A + height_regime: S+D+P+1E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.069000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 657 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Mircea cel Batran + county: Constanța + locality: Constanța + lat: 44.1750468 + lng: 28.6574238 + risk_category: N/A + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: IPJ C-ta + observations: Dezafctat in 1995 + has_warning_panels: null + year_built: 1925 + surface: 142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.076000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 658 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Nicolae Titulescu + county: Constanța + locality: Constanța + lat: 44.1732068 + lng: 28.6592412 + risk_category: N/A + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1228.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.082000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 659 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Nicolae Titulescu + county: Constanța + locality: Constanța + lat: 44.171891 + lng: 28.6598123 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Virgil Breaban + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 1705.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.090000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 660 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Rascoalei + county: Constanța + locality: Constanța + lat: 44.1806741 + lng: 28.6477565 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.098000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 661 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Revolutiei + county: Constanța + locality: Constanța + lat: 44.1737348 + lng: 28.660134 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 2504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.103000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 662 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Revolutiei + county: Constanța + locality: Constanța + lat: 44.1598013 + lng: 28.6348138 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.109000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 663 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Sulmona + county: Constanța + locality: Constanța + lat: 44.1762814 + lng: 28.6589392 + risk_category: N/A + height_regime: D+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 978.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.114000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 664 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1903373 + lng: 28.6458263 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 152.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.118000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 665 + fields: + parent_id: null + status: 1 + street_number: 2A + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1749657 + lng: 28.6572609 + risk_category: N/A + height_regime: P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 684.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.122000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 666 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1749728 + lng: 28.6569517 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 103.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.126000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 667 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1771207 + lng: 28.6532936 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 4538.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.132000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 668 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1777371 + lng: 28.6527321 + risk_category: N/A + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1991 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 4301.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.140000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 669 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Tomis + county: Constanța + locality: Constanța + lat: 44.1780626 + lng: 28.6524532 + risk_category: N/A + height_regime: S+P+1E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ing. Ionescu Dumitrel + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 994.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.148000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 670 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Traian + county: Constanța + locality: Constanța + lat: 44.1746484 + lng: 28.6567975 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 849.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.153000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 671 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Traian + county: Constanța + locality: Constanța + lat: 44.1746444 + lng: 28.6475323 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1990 + certified_expert: IPJ C-ta + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 477.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.159000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 672 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Vantului + county: Constanța + locality: Constanța + lat: 44.1766644 + lng: 28.6570926 + risk_category: N/A + height_regime: D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Ing. Virgil Breaban + observations: (Calatis nr. 28) + has_warning_panels: null + year_built: 1925 + surface: 270.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.164000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 673 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Scolii + county: Constanța + locality: Năvodari + lat: 44.3218153 + lng: 28.6096968 + risk_category: N/A + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ing. L. Iliescu + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1632.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.171000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 674 + fields: + parent_id: null + status: 1 + street_number: '8' + address: str. M. Eminescu + county: Caraș-Severin + locality: Băile Herculane + lat: 44.887385 + lng: 22.425274 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 327.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.195000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 675 + fields: + parent_id: null + status: 1 + street_number: '2' + address: P-ța 1 Mai + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8863851 + lng: 22.4237103 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 918.34 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.202000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 676 + fields: + parent_id: null + status: 1 + street_number: '1' + address: str. M. Eminescu + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8869818 + lng: 22.4248408 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 1540.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.208000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 677 + fields: + parent_id: null + status: 1 + street_number: '10' + address: str. castanilor + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8796285 + lng: 22.4125614 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 712.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.213000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 678 + fields: + parent_id: null + status: 1 + street_number: '10' + address: str. Domogled + county: Caraș-Severin + locality: Băile Herculane + lat: 44.885499 + lng: 22.423222 + risk_category: U3 + height_regime: P+1E (2E) + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 933.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.216000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 679 + fields: + parent_id: null + status: 1 + street_number: '2' + address: str. Licuricilor + county: Caraș-Severin + locality: Băile Herculane + lat: 44.88905731 + lng: 22.42489146 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 730.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.220000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 680 + fields: + parent_id: null + status: 1 + street_number: '64' + address: str. Zăvoiului + county: Caraș-Severin + locality: Băile Herculane + lat: 44.883222 + lng: 22.412347 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 347.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.225000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 681 + fields: + parent_id: null + status: 1 + street_number: '33' + address: str. Castanilor + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8854422 + lng: 22.4198545 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 471.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.231000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 682 + fields: + parent_id: null + status: 1 + street_number: '14' + address: str. Castanilor + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8805161 + lng: 22.4127776 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.237000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 683 + fields: + parent_id: null + status: 1 + street_number: '3' + address: str. Nicolae Stoica de Hațeg + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8864807 + lng: 22.4200408 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 740.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.245000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 684 + fields: + parent_id: null + status: 1 + street_number: '6' + address: str. Izvorului + county: Caraș-Severin + locality: Băile Herculane + lat: 44.8863671 + lng: 22.4193004 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1803 + surface: 914.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.252000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 685 + fields: + parent_id: null + status: 1 + street_number: bl. B6 + address: str. G. Enescu + county: Caraș-Severin + locality: Moldova Nouă + lat: 44.73110379 + lng: 21.6187179 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: dr. ing. Anastasescu Decebal + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 5803.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.257000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 686 + fields: + parent_id: null + status: 1 + street_number: bl.B5 + address: str. Dunărea + county: Caraș-Severin + locality: Moldova Nouă + lat: 44.73053741 + lng: 21.61726927 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: dr. ing. Anastasescu Decebal + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 5083.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.264000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 687 + fields: + parent_id: null + status: 1 + street_number: '20' + address: str. Petru Maior + county: Caraș-Severin + locality: Reșița + lat: 45.294862 + lng: 21.8775039 + risk_category: RS2 + height_regime: P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: ing. Huszti Andraș + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 607.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.268000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 688 + fields: + parent_id: null + status: 1 + street_number: bloc D6 + address: Aleea Centralei + county: Călărași + locality: Călărași + lat: 44.2000475 + lng: 27.3202275 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Kober Helmut + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 745.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.289000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 689 + fields: + parent_id: null + status: 1 + street_number: nr. 3, bloc C23 + address: str. Bărăganului + county: Călărași + locality: Călărași + lat: 44.2064678 + lng: 27.3189437 + risk_category: U3 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1991 + certified_expert: Dan Anastasiu + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 3179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.297000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 690 + fields: + parent_id: null + status: 1 + street_number: nr. 20, bloc Z16 + address: b-dul Mărășești + county: Călărași + locality: Oltenița + lat: 44.0908112 + lng: 26.6423029 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Hristoforov Alexandr + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 1125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.303000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 691 + fields: + parent_id: null + status: 1 + street_number: nr. 28, bloc M10 + address: str Al. Iliescu + county: Călărași + locality: Oltenița + lat: 44.0894165 + lng: 26.6365094 + risk_category: RS3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Hristoforov Alexandr + observations: '' + has_warning_panels: false + year_built: 1977 + surface: 1125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.308000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 692 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153772 + lng: 26.822 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1883 + surface: 386.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.324000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 693 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153727 + lng: 26.8221296 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1883 + surface: 784.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.330000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 694 + fields: + parent_id: null + status: 1 + street_number: 1l + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153473 + lng: 26.82141 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1880 + surface: 493.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.338000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 695 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153864 + lng: 26.822352 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1880 + surface: 669.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.344000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 696 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1539739 + lng: 26.8224793 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1920 + surface: 211.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.352000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 697 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1541399 + lng: 26.8233113 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1942 + surface: 106.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.357000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 698 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153527 + lng: 26.8221821 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1920 + surface: 372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.361000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 699 + fields: + parent_id: null + status: 1 + street_number: 22 bis + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1534859 + lng: 26.8213109 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1904 + surface: 637.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.365000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 700 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1536214 + lng: 26.8223795 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1934 + surface: 148.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.370000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 701 + fields: + parent_id: null + status: 1 + street_number: 43-45 + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.154475 + lng: 26.823481 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1928 + surface: 123.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.375000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 702 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1547636 + lng: 26.8235017 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1895 + surface: 200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.382000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 703 + fields: + parent_id: null + status: 1 + street_number: '86' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1546288 + lng: 26.8237904 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1934 + surface: 63.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.392000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 704 + fields: + parent_id: null + status: 1 + street_number: '90' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1545398 + lng: 26.8238326 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1910 + surface: 43.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.399000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 705 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Str. Piaţa Teatrului + county: Buzău + locality: Buzău + lat: 45.154727 + lng: 26.823805 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1910 + surface: 43.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.405000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 706 + fields: + parent_id: null + status: 1 + street_number: '95' + address: Str. Col. Buzoianu + county: Buzău + locality: Buzău + lat: 45.1462694 + lng: 26.820874 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1937 + surface: 517.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.411000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 707 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Str. Griviţei + county: Buzău + locality: Buzău + lat: 45.154101 + lng: 26.8225331 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1920 + surface: 150.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.415000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 708 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Str. Independenţei + county: Buzău + locality: Buzău + lat: 45.1511397 + lng: 26.8207673 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1936 + surface: 199.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.419000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 709 + fields: + parent_id: null + status: 1 + street_number: Bloc 41 + address: Micro XIV + county: Buzău + locality: Buzău + lat: 45.15305414 + lng: 26.79689723 + risk_category: U1 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mazilu + observations: '0' + has_warning_panels: null + year_built: 1971 + surface: 2520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.423000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 710 + fields: + parent_id: null + status: 1 + street_number: Bloc 1 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1559 + lng: 26.8184 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 1325.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.430000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 711 + fields: + parent_id: null + status: 1 + street_number: Bloc 3 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1559193 + lng: 26.8218903 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 1325.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.439000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 712 + fields: + parent_id: null + status: 1 + street_number: Bloc 4 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1559201 + lng: 26.8210394 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.448000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 713 + fields: + parent_id: null + status: 1 + street_number: Bloc 5 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1548934 + lng: 26.8253995 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.454000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 714 + fields: + parent_id: null + status: 1 + street_number: Bloc 10 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1559566 + lng: 26.8217837 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.460000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 715 + fields: + parent_id: null + status: 1 + street_number: Bloc 11 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1547029 + lng: 26.8257116 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.465000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 716 + fields: + parent_id: null + status: 1 + street_number: Bloc 12 + address: Obor + county: Buzău + locality: Buzău + lat: 45.155859 + lng: 26.823118 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.471000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 717 + fields: + parent_id: null + status: 1 + street_number: Bloc 13 + address: Obor + county: Buzău + locality: Buzău + lat: 45.1545803 + lng: 26.8259803 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1962 + surface: 2225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.476000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 718 + fields: + parent_id: null + status: 1 + street_number: Bloc 17 + address: Micro V + county: Buzău + locality: Buzău + lat: 45.14678157 + lng: 26.83807767 + risk_category: U1 + height_regime: S+P+M+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mazilu + observations: '0' + has_warning_panels: null + year_built: 1978 + surface: 11605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.484000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 719 + fields: + parent_id: null + status: 1 + street_number: Bloc 2 Chimica + address: Obor + county: Buzău + locality: Buzău + lat: 45.1554791 + lng: 26.8209468 + risk_category: U1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 42 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1955 + surface: 1118.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.491000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 720 + fields: + parent_id: null + status: 1 + street_number: Bloc A + address: Centru + county: Buzău + locality: Buzău + lat: 45.1630298 + lng: 26.8186091 + risk_category: U1 + height_regime: S+D+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1960 + surface: 1600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.499000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 721 + fields: + parent_id: null + status: 1 + street_number: Bloc B1 + address: Centru + county: Buzău + locality: Buzău + lat: 45.1526686 + lng: 26.8203035 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1960 + surface: 4959.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.506000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 722 + fields: + parent_id: null + status: 1 + street_number: Bloc E + address: Centru + county: Buzău + locality: Buzău + lat: 45.1559501 + lng: 26.8196178 + risk_category: U1 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 102 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1960 + surface: 8103.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.512000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 723 + fields: + parent_id: null + status: 1 + street_number: Bloc D + address: Centru + county: Buzău + locality: Buzău + lat: 45.1526686 + lng: 26.8203035 + risk_category: U1 + height_regime: S+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1960 + surface: 2514.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.516000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 724 + fields: + parent_id: null + status: 1 + street_number: Bloc B + address: Centru + county: Buzău + locality: Buzău + lat: 45.1531944 + lng: 26.8218956 + risk_category: U1 + height_regime: S+D+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1960 + surface: 1267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.521000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 725 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.154048 + lng: 26.8228001 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1918 + surface: 179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.524000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 726 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1540895 + lng: 26.8228958 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1920 + surface: 60.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.530000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 727 + fields: + parent_id: null + status: 1 + street_number: 33-35 + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.15422 + lng: 26.822867 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1926 + surface: 683.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.538000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 728 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.1536029 + lng: 26.822213 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1900 + surface: 240.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.546000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 729 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Str. Cuza-Vodă + county: Buzău + locality: Buzău + lat: 45.153712 + lng: 26.822491 + risk_category: U1 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: V.Constantinescu + observations: '0' + has_warning_panels: null + year_built: 1926 + surface: 283.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.552000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 730 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Str. Independenţei + county: Buzău + locality: Buzău + lat: 45.148568 + lng: 26.8184868 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1892 + surface: 400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.556000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 731 + fields: + parent_id: null + status: 1 + street_number: '106' + address: Str. Transilvaniei + county: Buzău + locality: Buzău + lat: 45.1582735 + lng: 26.8108225 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1929 + surface: 100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.562000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 732 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Str. Parîng + county: Buzău + locality: Buzău + lat: 45.150309 + lng: 26.832735 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1940 + surface: 96.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.567000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 733 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Str. Penteleu + county: Buzău + locality: Buzău + lat: 45.158087 + lng: 26.81237 + risk_category: RS3 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1930 + surface: 122.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.572000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 734 + fields: + parent_id: null + status: 1 + street_number: 40 Bloc Magnolia + address: B-dul. N. Bălcescu + county: Buzău + locality: Buzău + lat: 45.150694 + lng: 26.811792 + risk_category: RS3 + height_regime: S+P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1975 + surface: 2475.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.577000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 735 + fields: + parent_id: null + status: 1 + street_number: Bloc Camelia + address: B-dul. N. Bălcescu + county: Buzău + locality: Buzău + lat: 45.151334 + lng: 26.814338 + risk_category: RS3 + height_regime: S+P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: C. Pavel + observations: '0' + has_warning_panels: null + year_built: 1976 + surface: 5562.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.583000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 736 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.64294 + lng: 25.5921078 + risk_category: U3 + height_regime: P+M+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1400 + surface: 1859.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.606000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 737 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.642087 + lng: 25.5907307 + risk_category: U2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1600 + surface: 663.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.610000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 738 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Piața Stafului + county: Brașov + locality: Brașov + lat: 45.6422886 + lng: 25.5900532 + risk_category: U2 + height_regime: P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 1048.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.614000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 739 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Postăvarului + county: Brașov + locality: Brașov + lat: 45.6434653 + lng: 25.5953478 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 1260.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.617000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 740 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.641008 + lng: 25.5929098 + risk_category: U3 + height_regime: P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1889 + surface: 732.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.621000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 741 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Mureșenilor + county: Brașov + locality: Brașov + lat: 45.6437222 + lng: 25.5880993 + risk_category: U2 + height_regime: P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1775 + surface: 2730.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.626000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 742 + fields: + parent_id: null + status: 1 + street_number: '20' + address: N. Bălcescu + county: Brașov + locality: Brașov + lat: 45.6418948 + lng: 25.5930819 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1753 + surface: 532.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.633000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 743 + fields: + parent_id: null + status: 1 + street_number: '9' + address: T. Grozăvescu + county: Brașov + locality: Brașov + lat: 45.6517799 + lng: 25.6015437 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 512.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.639000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 744 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Lungă + county: Brașov + locality: Brașov + lat: 45.6510698 + lng: 25.5865203 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1820 + surface: 544.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.646000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 745 + fields: + parent_id: null + status: 1 + street_number: '6' + address: A. Russo + county: Brașov + locality: Brașov + lat: 45.6410135 + lng: 25.5911235 + risk_category: U2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 880.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.653000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 746 + fields: + parent_id: null + status: 1 + street_number: '12' + address: 15 Noiembrie + county: Brașov + locality: Brașov + lat: 45.645891 + lng: 25.6000363 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 280.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.658000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 747 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.6404687 + lng: 25.5912326 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1892 + surface: 1078.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.664000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 748 + fields: + parent_id: null + status: 1 + street_number: '18' + address: 15 Noiembrie + county: Brașov + locality: Brașov + lat: 45.6459865 + lng: 25.6006255 + risk_category: U3 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 456.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.668000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 749 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Lungă + county: Brașov + locality: Brașov + lat: 45.657293 + lng: 25.580879 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 534.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.674000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 750 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Pieții + county: Brașov + locality: Brașov + lat: 45.6452539 + lng: 25.5992391 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 619.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.681000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 751 + fields: + parent_id: null + status: 1 + street_number: '169' + address: Lungă + county: Brașov + locality: Brașov + lat: 45.6558063 + lng: 25.5817608 + risk_category: U3 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 698.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.689000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 752 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.6423635 + lng: 25.5910578 + risk_category: U3 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 813.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.696000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 753 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Piața Sfatului + county: Brașov + locality: Brașov + lat: 45.6423869 + lng: 25.5900541 + risk_category: U1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1797 + surface: 803.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.703000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 754 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.63912 + lng: 25.589889 + risk_category: U1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1843 + surface: 858.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.708000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 755 + fields: + parent_id: null + status: 1 + street_number: '7' + address: J. Gott + county: Brașov + locality: Brașov + lat: 45.6413665 + lng: 25.5906935 + risk_category: U1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1800 + surface: 810.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.712000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 756 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Șirul Livezii + county: Brașov + locality: Brașov + lat: 45.647516 + lng: 25.5837553 + risk_category: U1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1910 + surface: 268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.717000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 757 + fields: + parent_id: null + status: 1 + street_number: '51' + address: N. Bălcescu + county: Brașov + locality: Brașov + lat: 45.6428674 + lng: 25.5952103 + risk_category: U1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1696 + surface: 485.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.721000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 758 + fields: + parent_id: null + status: 1 + street_number: '9' + address: A. Hircher + county: Brașov + locality: Brașov + lat: 45.6412809 + lng: 25.5894953 + risk_category: U1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1723 + surface: 2912.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.726000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 759 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Poarta Schei + county: Brașov + locality: Brașov + lat: 45.6399392 + lng: 25.5882799 + risk_category: U1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: false + year_built: 1703 + surface: 899.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.733000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 760 + fields: + parent_id: null + status: 1 + street_number: 35, corp 1 + address: Cuza Vodă + county: Brașov + locality: Brașov + lat: 45.6506577 + lng: 25.5967816 + risk_category: RS1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1910 + surface: 670.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.741000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 761 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Neagoe Basarab + county: Brașov + locality: Brașov + lat: 45.6447636 + lng: 25.6020168 + risk_category: RS1 + height_regime: S+P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1925 + surface: 295.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.749000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 762 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Mureșenilor + county: Brașov + locality: Brașov + lat: 45.6451889 + lng: 25.5898776 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 1910.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.754000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 763 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.6428759 + lng: 25.5920463 + risk_category: RS1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1600 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.759000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 764 + fields: + parent_id: null + status: 1 + street_number: 84 corp 2 + address: Castelului + county: Brașov + locality: Brașov + lat: 45.64065733 + lng: 25.59263885 + risk_category: RS1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1902 + surface: 875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.765000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 765 + fields: + parent_id: null + status: 1 + street_number: '81' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.6419594 + lng: 25.5948916 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.770000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 766 + fields: + parent_id: null + status: 1 + street_number: '64' + address: După Iniște + county: Brașov + locality: Brașov + lat: 45.6403245 + lng: 25.5709163 + risk_category: RS1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Pop Horațiu + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 338.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.775000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 767 + fields: + parent_id: null + status: 1 + street_number: '20' + address: A. Hircher + county: Brașov + locality: Brașov + lat: 45.6402396 + lng: 25.5899893 + risk_category: RS1 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1930 + surface: 1297.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.782000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 768 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Ecaterina Varga + county: Brașov + locality: Brașov + lat: 45.642946 + lng: 25.603426 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1940 + surface: 331.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.789000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 769 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Dealul Morii + county: Brașov + locality: Brașov + lat: 45.6527867 + lng: 25.6006877 + risk_category: RS3 + height_regime: S+D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.795000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 770 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Luca Arbore + county: Brașov + locality: Brașov + lat: 45.6357981 + lng: 25.5838704 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 112.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.802000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 771 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Cuza Vodă + county: Brașov + locality: Brașov + lat: 45.6518712 + lng: 25.637964 + risk_category: RS3 + height_regime: S+P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 726.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.807000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 772 + fields: + parent_id: null + status: 1 + street_number: '45' + address: N. Bălcescu + county: Brașov + locality: Brașov + lat: 45.6426441 + lng: 25.5949017 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1900 + surface: 1417.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.814000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 773 + fields: + parent_id: null + status: 1 + street_number: '69' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.64115 + lng: 25.59293 + risk_category: RS2 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1800 + surface: 456.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.818000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 774 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.6432372 + lng: 25.5920193 + risk_category: RS2 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 2779.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.823000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 775 + fields: + parent_id: null + status: 1 + street_number: '31' + address: N. Bălcescu + county: Brașov + locality: Brașov + lat: 45.6423403 + lng: 25.5939342 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 1141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.828000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 776 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Saturn + county: Brașov + locality: Brașov + lat: 45.6358515 + lng: 25.6354239 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 352 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 24626.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.835000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 777 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Hans Beckner + county: Brașov + locality: Brașov + lat: 45.64022954 + lng: 25.58802318 + risk_category: RS2 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1700 + surface: 735.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.842000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 778 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Republicii + county: Brașov + locality: Brașov + lat: 45.6440617 + lng: 25.5936801 + risk_category: RS2 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1149.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.850000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 779 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Aurora + county: Brașov + locality: Brașov + lat: 45.6440912 + lng: 25.6290182 + risk_category: RS2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 43 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 3366.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.855000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 780 + fields: + parent_id: null + status: 1 + street_number: '140' + address: Castelului + county: Brașov + locality: Brașov + lat: 45.642312 + lng: 25.5963671 + risk_category: RS2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 394.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.859000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 781 + fields: + parent_id: null + status: 1 + street_number: '65' + address: C. Brâncoveanu + county: Brașov + locality: Brașov + lat: 45.6365536 + lng: 25.5773524 + risk_category: RS1 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: false + year_built: 1910 + surface: 241.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.865000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 782 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Soarelui + county: Brașov + locality: Brașov + lat: 45.6363524 + lng: 25.6336643 + risk_category: RS3 + height_regime: S+P4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Andronache Gheorghe + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 2875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.871000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 783 + fields: + parent_id: null + status: 1 + street_number: 84 corp 1 + address: Castelului + county: Brașov + locality: Brașov + lat: 45.64076929 + lng: 25.59252919 + risk_category: RS1 + height_regime: P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Andronache Gheorghe + observations: Demolare + has_warning_panels: false + year_built: 1902 + surface: 875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.875000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 784 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada Doctor Gheorghe Baiulescu + county: Brașov + locality: Brașov + lat: 45.63731375 + lng: 25.58677218 + risk_category: U2 + height_regime: P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: '' + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.880000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 785 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 323.19 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.905000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 786 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.909000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 787 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.745665 + lng: 26.668601 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 270.58 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.913000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 788 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 89.66 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.917000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 789 + fields: + parent_id: null + status: 1 + street_number: 57-59 + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 150.73 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.920000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 790 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 218.16 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.926000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 791 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 833.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.932000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 792 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 225.28 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.939000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 793 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1943 + surface: 175.57 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.947000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 794 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 403.22 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.955000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 795 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.745595 + lng: 26.6689079 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 60.76 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.961000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 796 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.966000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 797 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 108.73 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.969000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 798 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 127.47 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.974000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 799 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.745693 + lng: 26.66899 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 85.87 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.978000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 800 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.745792 + lng: 26.669072 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 33.26 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.985000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 801 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.74589 + lng: 26.669154 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 29.93 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:17.993000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 802 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.7459879 + lng: 26.669236 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 82.45 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.001000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 803 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 2037.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.008000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 804 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 251.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.013000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 805 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.746099 + lng: 26.669351 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.020000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 806 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 221.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.025000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 807 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 218.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.031000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 808 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 394.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.039000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 809 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.745665 + lng: 26.668601 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 431.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.046000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 810 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.7461849 + lng: 26.669456 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 749.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.052000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 811 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.746529 + lng: 26.669878 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 148.28 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.056000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 812 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7448154 + lng: 26.6692426 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 79.41 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.061000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 813 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.066000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 814 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Str. Ion Pillat + county: Botoșani + locality: Botoșani + lat: 47.7438503 + lng: 26.6720512 + risk_category: RS2 + height_regime: SP+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 95.11 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.071000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 815 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Str. Victoriei + county: Botoșani + locality: Botoșani + lat: 47.7444442 + lng: 26.668505 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 328.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.078000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 816 + fields: + parent_id: null + status: 1 + street_number: '81' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7448989 + lng: 26.671115 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1901 + surface: 276.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.086000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 817 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7447645 + lng: 26.6691538 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 293.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.093000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 818 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.746372 + lng: 26.669511 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 301.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.100000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 819 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Str. Savenilor + county: Botoșani + locality: Botoșani + lat: 47.7487203 + lng: 26.6719884 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 63.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.105000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 820 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7450392 + lng: 26.6696249 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.110000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 821 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7449073 + lng: 26.6695729 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 176.84 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.117000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 822 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.744991 + lng: 26.6695487 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 338.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.121000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 823 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Piața 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7449172 + lng: 26.6694201 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 252.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.125000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 824 + fields: + parent_id: null + status: 1 + street_number: '94' + address: Str. IC Bratianu + county: Botoșani + locality: Botoșani + lat: 47.7387181 + lng: 26.6849165 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 120.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.130000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 825 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 229.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.138000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 826 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 113.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.146000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 827 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 87.96 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.153000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 828 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 160.81 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.157000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 829 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 103.32 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.162000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 830 + fields: + parent_id: null + status: 1 + street_number: '79' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7458593 + lng: 26.6658232 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 177.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.167000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 831 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Str. Puskin + county: Botoșani + locality: Botoșani + lat: 47.7407163 + lng: 26.6729616 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.174000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 832 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Dragos Voda + county: Botoșani + locality: Botoșani + lat: 47.7441769 + lng: 26.673794 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2003 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 185.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.180000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 833 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Str. A. Mureșan + county: Botoșani + locality: Botoșani + lat: 47.751309 + lng: 26.665492 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.188000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 834 + fields: + parent_id: null + status: 1 + street_number: 3-4-2005 + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.746867 + lng: 26.6630005 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.195000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 835 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Crinilor + county: Botoșani + locality: Botoșani + lat: 47.7493813 + lng: 26.6745587 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1911 + surface: 26.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.202000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 836 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Str. 1 Decembrie + county: Botoșani + locality: Botoșani + lat: 47.7461343 + lng: 26.6650207 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 347.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.208000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 837 + fields: + parent_id: null + status: 1 + street_number: 14 bl.140 + address: P. Tineretului + county: Botoșani + locality: Botoșani + lat: 47.75301976 + lng: 26.67302361 + risk_category: RS1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Nord Proiect + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 2300.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.212000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 838 + fields: + parent_id: null + status: 1 + street_number: '67' + address: Str. Dimitrie Pompeiu + county: Botoșani + locality: Dorohoi + lat: 47.9530151 + lng: 26.3992872 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 113.95 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.216000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 839 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Str. Dimitrie Pompeiu + county: Botoșani + locality: Dorohoi + lat: 47.9531654 + lng: 26.3992953 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 74.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.220000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 840 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Str. Dimitrie Pompeiu + county: Botoșani + locality: Dorohoi + lat: 47.9532405 + lng: 26.3992994 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 77.49 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.224000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 841 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Str. Dimitrie Pompeiu + county: Botoșani + locality: Dorohoi + lat: 47.95325288 + lng: 26.39932457 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 80.16 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.230000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 842 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Str. Dimitrie Pompeiu + county: Botoșani + locality: Dorohoi + lat: 47.95330156 + lng: 26.39933387 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nour Smaranda Doina + observations: '' + has_warning_panels: null + year_built: 1919 + surface: 189.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.237000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 843 + fields: + parent_id: null + status: 1 + street_number: '7' + address: AVIATORI + county: Bacău + locality: Bacău + lat: 46.5361207 + lng: 26.9154447 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1953 + surface: 80.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.261000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 844 + fields: + parent_id: null + status: 1 + street_number: '5' + address: CAISILOR + county: Bacău + locality: Bacău + lat: 46.5661191 + lng: 26.9055723 + risk_category: U2 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1953 + surface: 290.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.265000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 845 + fields: + parent_id: null + status: 1 + street_number: '1' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.549304 + lng: 26.913169 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3567.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.269000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 846 + fields: + parent_id: null + status: 1 + street_number: '23' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.564391 + lng: 26.9100619 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1953 + surface: 318.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.273000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 847 + fields: + parent_id: null + status: 1 + street_number: '6' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.5504946 + lng: 26.9120648 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 5585.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.276000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 848 + fields: + parent_id: null + status: 1 + street_number: '7' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.5491421 + lng: 26.9124503 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 5927.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.281000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 849 + fields: + parent_id: null + status: 1 + street_number: '1' + address: FRASINULUI + county: Bacău + locality: Bacău + lat: 46.5514102 + lng: 26.9126044 + risk_category: U2 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 645.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.288000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 850 + fields: + parent_id: null + status: 1 + street_number: 1A + address: GAROFITEI + county: Bacău + locality: Bacău + lat: 46.5519175 + lng: 26.908686 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 2007.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.296000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 851 + fields: + parent_id: null + status: 1 + street_number: 7b + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5662728 + lng: 26.9009204 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 932.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.303000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 852 + fields: + parent_id: null + status: 1 + street_number: '11' + address: MARASESTI + county: Bacău + locality: Bacău + lat: 46.56212 + lng: 26.912754 + risk_category: RS1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: false + year_built: 1961 + surface: 2941.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.308000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 853 + fields: + parent_id: null + status: 1 + street_number: '12' + address: N. BALCESCU + county: Bacău + locality: Bacău + lat: 46.567044 + lng: 26.911727 + risk_category: U2 + height_regime: P+M+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 244 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1980 + surface: 3787.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.312000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 854 + fields: + parent_id: null + status: 1 + street_number: '42' + address: NUFARULUI + county: Bacău + locality: Bacău + lat: 46.5671256 + lng: 26.9213392 + risk_category: U1 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1969 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.316000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 855 + fields: + parent_id: null + status: 1 + street_number: '1' + address: ALEEA PARCULUI + county: Bacău + locality: Bacău + lat: 46.5607831 + lng: 26.910362 + risk_category: U1 + height_regime: P+2+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 1202.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.322000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 856 + fields: + parent_id: null + status: 1 + street_number: '42' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.561559 + lng: 26.910763 + risk_category: U2 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 376.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.328000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 857 + fields: + parent_id: null + status: 1 + street_number: '50' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.560468 + lng: 26.9107266 + risk_category: U1 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 1297.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.335000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 858 + fields: + parent_id: null + status: 1 + street_number: 7A + address: STEFAN CEL MARE + county: Bacău + locality: Bacău + lat: 46.5758027 + lng: 26.9153257 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1983 + surface: 1863.73 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.343000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 859 + fields: + parent_id: null + status: 1 + street_number: '121' + address: BUCEGI + county: Bacău + locality: Bacău + lat: 46.5414211 + lng: 26.9158471 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 5090.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.351000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 860 + fields: + parent_id: null + status: 1 + street_number: '116' + address: MARASESTI + county: Bacău + locality: Bacău + lat: 46.5470607 + lng: 26.91344 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 1014.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.357000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 861 + fields: + parent_id: null + status: 1 + street_number: '98' + address: MARASESTI + county: Bacău + locality: Bacău + lat: 46.5518014 + lng: 26.9125783 + risk_category: U2 + height_regime: P+8 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 61 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1981 + surface: 9600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.361000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 862 + fields: + parent_id: null + status: 1 + street_number: 6A + address: METALURGIEI + county: Bacău + locality: Bacău + lat: 46.5367353 + lng: 26.9214807 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 1830.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.365000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 863 + fields: + parent_id: null + status: 1 + street_number: '26' + address: N. TITULESCU + county: Bacău + locality: Bacău + lat: 46.566826 + lng: 26.906184 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 130.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.369000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 864 + fields: + parent_id: null + status: 1 + street_number: '28' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.5634609 + lng: 26.910384 + risk_category: U1 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 427.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.373000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 865 + fields: + parent_id: null + status: 1 + street_number: '50' + address: REPUBLICII + county: Bacău + locality: Bacău + lat: 46.5375336 + lng: 26.9175334 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 2915.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.378000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 866 + fields: + parent_id: null + status: 1 + street_number: '52' + address: REPUBLICII + county: Bacău + locality: Bacău + lat: 46.537139 + lng: 26.9177029 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 2487.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.386000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 867 + fields: + parent_id: null + status: 1 + street_number: '26' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.561575 + lng: 26.914214 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1564.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.394000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 868 + fields: + parent_id: null + status: 1 + street_number: '32' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.5620932 + lng: 26.9148575 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1463.72 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.400000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 869 + fields: + parent_id: null + status: 1 + street_number: '54' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.5643348 + lng: 26.9168759 + risk_category: U3 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 4066.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.405000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 870 + fields: + parent_id: null + status: 1 + street_number: '4' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.5504561 + lng: 26.9127754 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 8088.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.410000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 871 + fields: + parent_id: null + status: 1 + street_number: '2' + address: EROU GH. RUSU + county: Bacău + locality: Bacău + lat: 46.564176 + lng: 26.9139854 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 5298.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.416000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 872 + fields: + parent_id: null + status: 1 + street_number: '4' + address: EROU GH. RUSU + county: Bacău + locality: Bacău + lat: 46.5640178 + lng: 26.9140646 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 75 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 5794.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.420000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 873 + fields: + parent_id: null + status: 1 + street_number: '44199' + address: I.S.STURZA + county: Bacău + locality: Bacău + lat: 46.56495256 + lng: 26.9104812 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 4300.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.425000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 874 + fields: + parent_id: null + status: 1 + street_number: '44199' + address: LUMINII + county: Bacău + locality: Bacău + lat: 46.56488068 + lng: 26.91351667 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 69 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.431000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 875 + fields: + parent_id: null + status: 1 + street_number: '18' + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5660694 + lng: 26.8983299 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 1164.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.438000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 876 + fields: + parent_id: null + status: 1 + street_number: '48' + address: NICU ENEA + county: Bacău + locality: Bacău + lat: 46.5724189 + lng: 26.917603 + risk_category: U1 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1392.14 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.446000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 877 + fields: + parent_id: null + status: 1 + street_number: '3' + address: NICOLAE TITUESCU + county: Bacău + locality: Bacău + lat: 46.5665219 + lng: 26.9101629 + risk_category: U2 + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 38 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2610.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.453000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 878 + fields: + parent_id: null + status: 1 + street_number: '1' + address: TRANDAFIRILOR + county: Bacău + locality: Bacău + lat: 46.567149 + lng: 26.9098984 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 83 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 4548.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.458000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 879 + fields: + parent_id: null + status: 1 + street_number: '3' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.562635 + lng: 26.9144259 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: AVRAM CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 5123.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.462000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 880 + fields: + parent_id: null + status: 1 + street_number: '47' + address: ALECU RUSSO + county: Bacău + locality: Bacău + lat: 46.5494879 + lng: 26.919738 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1985 + surface: 4400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.466000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 881 + fields: + parent_id: null + status: 1 + street_number: '10' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.535647 + lng: 26.9152744 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 3365.38 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.470000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 882 + fields: + parent_id: null + status: 1 + street_number: '11' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.5351461 + lng: 26.9138637 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 58 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 3301.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.477000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 883 + fields: + parent_id: null + status: 1 + street_number: '14' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.5353348 + lng: 26.9132768 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1757.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.483000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 884 + fields: + parent_id: null + status: 1 + street_number: '15' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.53600207 + lng: 26.91227403 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1224.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.491000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 885 + fields: + parent_id: null + status: 1 + street_number: '16' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.536438 + lng: 26.91193854 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1224.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.498000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 886 + fields: + parent_id: null + status: 1 + street_number: '29' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.538524 + lng: 26.9145902 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 910.55 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.504000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 887 + fields: + parent_id: null + status: 1 + street_number: '4' + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.5368186 + lng: 26.9170018 + risk_category: U2 + height_regime: P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: AVRAM CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1336.93 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.509000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 888 + fields: + parent_id: null + status: 1 + street_number: '139' + address: BUCEGI + county: Bacău + locality: Bacău + lat: 46.5397136 + lng: 26.9161971 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3148.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.514000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 889 + fields: + parent_id: null + status: 1 + street_number: '4' + address: GEORGE APOSTU + county: Bacău + locality: Bacău + lat: 46.562493 + lng: 26.913722 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2826.58 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.519000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 890 + fields: + parent_id: null + status: 1 + street_number: '6' + address: GEORGE APOSTU + county: Bacău + locality: Bacău + lat: 46.5620086 + lng: 26.9118363 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2826.58 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.525000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 891 + fields: + parent_id: null + status: 1 + street_number: '22' + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5659851 + lng: 26.8979367 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 2365.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.531000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 892 + fields: + parent_id: null + status: 1 + street_number: '112' + address: MILCOV + county: Bacău + locality: Bacău + lat: 46.5550023 + lng: 26.9223878 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 1875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.540000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 893 + fields: + parent_id: null + status: 1 + street_number: '9' + address: MILCOV + county: Bacău + locality: Bacău + lat: 46.553247 + lng: 26.923297 + risk_category: U2 + height_regime: P+6 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1984 + surface: 4800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.549000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 894 + fields: + parent_id: null + status: 1 + street_number: '29' + address: NICOLAE TITULESCU + county: Bacău + locality: Bacău + lat: 46.566694 + lng: 26.905935 + risk_category: U3 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: ZVEGHINTEV ION + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.555000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 895 + fields: + parent_id: null + status: 1 + street_number: '13' + address: NARCISA + county: Bacău + locality: Bacău + lat: 46.5401871 + lng: 26.917102 + risk_category: U2 + height_regime: P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 110 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 6576.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.561000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 896 + fields: + parent_id: null + status: 1 + street_number: '37' + address: ALEEA PARCULUI + county: Bacău + locality: Bacău + lat: 46.5610629 + lng: 26.9019074 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 1327.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.566000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 897 + fields: + parent_id: null + status: 1 + street_number: '44' + address: ALEEA PARCULUI + county: Bacău + locality: Bacău + lat: 46.5617408 + lng: 26.9005095 + risk_category: N/A + height_regime: P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.571000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 898 + fields: + parent_id: null + status: 1 + street_number: '48' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.5611694 + lng: 26.9107548 + risk_category: U2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1166.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.575000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 899 + fields: + parent_id: null + status: 1 + street_number: '52' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.563705 + lng: 26.916548 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 65 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: AVRAM CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4174.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.580000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 900 + fields: + parent_id: null + status: 1 + street_number: '1' + address: MARASESTI + county: Bacău + locality: Bacău + lat: 46.565066 + lng: 26.912192 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 3804.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.587000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 901 + fields: + parent_id: null + status: 1 + street_number: '9' + address: NARCISELOR + county: Bacău + locality: Bacău + lat: 46.5388689 + lng: 26.9149795 + risk_category: RS2 + height_regime: S+P+10 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 55 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 3244.85 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.597000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 902 + fields: + parent_id: null + status: 1 + street_number: '1' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.5615261 + lng: 26.9132872 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2374.95 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.603000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 903 + fields: + parent_id: null + status: 1 + street_number: '5' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.56306 + lng: 26.91499 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2374.95 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.611000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 904 + fields: + parent_id: null + status: 1 + street_number: '42' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.56304 + lng: 26.915693 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 65 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4083.88 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.618000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 905 + fields: + parent_id: null + status: 1 + street_number: '38' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.562638 + lng: 26.915354 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1466.43 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.621000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 906 + fields: + parent_id: null + status: 1 + street_number: '36' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.56246 + lng: 26.914909 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2177.04 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.626000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 907 + fields: + parent_id: null + status: 1 + street_number: '28' + address: 9 MAI + county: Bacău + locality: Bacău + lat: 46.561924 + lng: 26.914346 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1852.69 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.632000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 908 + fields: + parent_id: null + status: 1 + street_number: '40' + address: ALEEA PARCULUI + county: Bacău + locality: Bacău + lat: 46.5610369 + lng: 26.901131 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1464.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.641000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 909 + fields: + parent_id: null + status: 1 + street_number: '18' + address: MARASESTI + county: Bacău + locality: Bacău + lat: 46.560462 + lng: 26.912177 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1954 + surface: 1757.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.648000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 910 + fields: + parent_id: null + status: 1 + street_number: '28' + address: I.S. STURZA + county: Bacău + locality: Bacău + lat: 46.5647271 + lng: 26.9075975 + risk_category: RS2 + height_regime: D+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2265.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.655000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 911 + fields: + parent_id: null + status: 1 + street_number: '30' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.5634609 + lng: 26.910384 + risk_category: RS2 + height_regime: D+P+3 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2451.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.662000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 912 + fields: + parent_id: null + status: 1 + street_number: '11' + address: GEORGE APOSTU + county: Bacău + locality: Bacău + lat: 46.563402 + lng: 26.9141662 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 994.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.666000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 913 + fields: + parent_id: null + status: 1 + street_number: '8' + address: CUZA VODA + county: Bacău + locality: Bacău + lat: 46.56923 + lng: 26.902956 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2584.62 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.670000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 914 + fields: + parent_id: null + status: 1 + street_number: '16' + address: CUZA VODA + county: Bacău + locality: Bacău + lat: 46.569438 + lng: 26.901267 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 1124.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.674000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 915 + fields: + parent_id: null + status: 1 + street_number: '14' + address: CUZA VODA + county: Bacău + locality: Bacău + lat: 46.569361 + lng: 26.9018779 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 35 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.680000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 916 + fields: + parent_id: null + status: 1 + street_number: '65' + address: GEORGE BACOVIA + county: Bacău + locality: Bacău + lat: 46.5699884 + lng: 26.901195 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1368.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.689000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 917 + fields: + parent_id: null + status: 1 + street_number: '11' + address: PACII + county: Bacău + locality: Bacău + lat: 46.569591 + lng: 26.903272 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1446.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.696000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 918 + fields: + parent_id: null + status: 1 + street_number: '10' + address: NARCISELOR + county: Bacău + locality: Bacău + lat: 46.539319 + lng: 26.91281 + risk_category: RS4 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 2199.11 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.703000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 919 + fields: + parent_id: null + status: 1 + street_number: '3' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.5487841 + lng: 26.9130644 + risk_category: RS4 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 4353.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.707000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 920 + fields: + parent_id: null + status: 1 + street_number: '2' + address: CASTANILOR + county: Bacău + locality: Bacău + lat: 46.5499684 + lng: 26.9127034 + risk_category: RS4 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 4353.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.711000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 921 + fields: + parent_id: null + status: 1 + street_number: '25' + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5660459 + lng: 26.8997192 + risk_category: RS3 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 557.92 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.716000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 922 + fields: + parent_id: null + status: 1 + street_number: '24' + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5659401 + lng: 26.8977353 + risk_category: RS2 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2250.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.720000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 923 + fields: + parent_id: null + status: 1 + street_number: '25' + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.5634609 + lng: 26.910384 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 1757.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.725000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 924 + fields: + parent_id: null + status: 1 + street_number: 1bis + address: FRASINULUI + county: Bacău + locality: Bacău + lat: 46.5517158 + lng: 26.9118232 + risk_category: RS2 + height_regime: D+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 1229.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.731000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 925 + fields: + parent_id: null + status: 1 + street_number: '30' + address: NICOLAE TITULESCU + county: Bacău + locality: Bacău + lat: 46.5669507 + lng: 26.9056588 + risk_category: RS2 + height_regime: D+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 782.54 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.738000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 926 + fields: + parent_id: null + status: 1 + street_number: '22' + address: NICOLAE TITULESCU + county: Bacău + locality: Bacău + lat: 46.566775 + lng: 26.906638 + risk_category: RS3 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 1326.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.748000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 927 + fields: + parent_id: null + status: 1 + street_number: '19' + address: NICOLAE TITULESCU + county: Bacău + locality: Bacău + lat: 46.5664228 + lng: 26.9075181 + risk_category: RS3 + height_regime: D+P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 778.74 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.754000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 928 + fields: + parent_id: null + status: 1 + street_number: '10' + address: CAISILOR + county: Bacău + locality: Bacău + lat: 46.5662358 + lng: 26.9051538 + risk_category: RS2 + height_regime: D+P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 372.69 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.759000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 929 + fields: + parent_id: null + status: 1 + street_number: 40bis + address: RAZBOIENI + county: Bacău + locality: Bacău + lat: 46.565524 + lng: 26.9097121 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1088.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.763000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 930 + fields: + parent_id: null + status: 1 + street_number: 3bis + address: LUMINII + county: Bacău + locality: Bacău + lat: 46.5651191 + lng: 26.9136702 + risk_category: RS3 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 4353.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.768000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 931 + fields: + parent_id: null + status: 1 + street_number: 19a + address: AVIATORILOR + county: Bacău + locality: Bacău + lat: 46.535555 + lng: 26.9124449 + risk_category: RS2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: HOBJILA VASILE + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 1808.46 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.773000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 932 + fields: + parent_id: null + status: 1 + street_number: '2' + address: GARII + county: Bacău + locality: Bacău + lat: 46.5633104 + lng: 26.8981324 + risk_category: RS2 + height_regime: S+P+2 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ARMEANU PAVEL + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 860.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.778000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 933 + fields: + parent_id: null + status: 1 + street_number: '9' + address: ENERGIEI + county: Bacău + locality: Bacău + lat: 46.5679905 + lng: 26.9027848 + risk_category: RS2 + height_regime: P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ARMEANU PAVEL + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 242.08 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.784000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 934 + fields: + parent_id: null + status: 1 + street_number: '20' + address: I.S. STURZA + county: Bacău + locality: Bacău + lat: 46.5649435 + lng: 26.9087128 + risk_category: RS2 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ARMEANU PAVEL + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 387.48 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.791000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 935 + fields: + parent_id: null + status: 1 + street_number: '14' + address: MIHAI EMINESCU + county: Bacău + locality: Bacău + lat: 46.5661826 + lng: 26.8986944 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ARMEANU PAVEL + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 173.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.799000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 936 + fields: + parent_id: null + status: 1 + street_number: '19' + address: GEORGE BACOVIA + county: Bacău + locality: Bacău + lat: 46.569881 + lng: 26.908363 + risk_category: RS2 + height_regime: P+1 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ARMEANU PAVEL + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 319.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.804000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 937 + fields: + parent_id: null + status: 1 + street_number: A2 + address: GARII + county: Bacău + locality: Moinesti + lat: 46.46960893 + lng: 26.48616634 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 2304.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.811000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 938 + fields: + parent_id: null + status: 1 + street_number: E1 + address: VASILE ALECSANDRI + county: Bacău + locality: Moinesti + lat: 46.4758505 + lng: 26.49038515 + risk_category: U3 + height_regime: P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2112.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.816000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 939 + fields: + parent_id: null + status: 1 + street_number: E2 + address: VASILE ALECSANDRI + county: Bacău + locality: Moinesti + lat: 46.47597855 + lng: 26.49015398 + risk_category: U3 + height_regime: P+5 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: GRAPA CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 1022.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.820000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 940 + fields: + parent_id: null + status: 1 + street_number: G1-B + address: TRISTAN TZARA + county: Bacău + locality: Moinesti + lat: 46.4847236 + lng: 26.4910251 + risk_category: RS3 + height_regime: S+P+4 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 100 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: AVRAM CONSTANTIN + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 2672.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.825000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 941 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Calea Galați + county: Brăila + locality: Brăila + lat: 45.2794393 + lng: 27.9720875 + risk_category: C + height_regime: P+9 + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Dr. Ing. Cosovliu Octavian + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 2719.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.851000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 942 + fields: + parent_id: null + status: 1 + street_number: Bloc A + address: Calea Galați + county: Brăila + locality: Brăila + lat: 45.28118785 + lng: 27.97149411 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 106 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 7519.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.858000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 943 + fields: + parent_id: null + status: 1 + street_number: Bloc C10 + address: Hipodrom + county: Brăila + locality: Brăila + lat: 45.26362544 + lng: 27.9573998 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ing. Cruceanu Dan + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 4252.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.862000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 944 + fields: + parent_id: null + status: 1 + street_number: Bloc D2 + address: Hristo Botev + county: Brăila + locality: Brăila + lat: 45.2709419 + lng: 27.96521278 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 3420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.867000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 945 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713204 + lng: 27.9716376 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1916 + surface: 691.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.872000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 946 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713204 + lng: 27.9716376 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 170.65 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.876000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 947 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713204 + lng: 27.9716376 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 722.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.881000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 948 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2714793 + lng: 27.9703546 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1070.7 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.889000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 949 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.271499 + lng: 27.9711491 + risk_category: RS1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ing. Cruceanu Dan + observations: '' + has_warning_panels: null + year_built: 1871 + surface: 289.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.896000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 950 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713188 + lng: 27.9693656 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 289.3 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.904000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 951 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.271499 + lng: 27.9711491 + risk_category: RS1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ing. Cruceanu Dan + observations: '' + has_warning_panels: null + year_built: 1871 + surface: 144.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.909000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 952 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713188 + lng: 27.9693656 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 321.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.914000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 953 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713675 + lng: 27.9691642 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1892 + surface: 344.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.919000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 954 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2712709 + lng: 27.9691123 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1901 + surface: 330.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.924000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 955 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.271499 + lng: 27.9711491 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 632.25 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.929000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 956 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2712651 + lng: 27.9684451 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1463.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.937000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 957 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2713992 + lng: 27.9681626 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1074.27 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.945000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 958 + fields: + parent_id: null + status: 1 + street_number: '62' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2716481 + lng: 27.968561 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 889.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.951000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 959 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2715077 + lng: 27.9679604 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 957.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.955000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 960 + fields: + parent_id: null + status: 1 + street_number: '67' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2712308 + lng: 27.9664909 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Cosovliu Octavian + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 339.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.961000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 961 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2715784 + lng: 27.9684435 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 224.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.966000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 962 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2720071 + lng: 27.9679465 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ing. Andrei Gheorghe + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 223.45 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.970000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 963 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2716469 + lng: 27.9684199 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ing. Andrei Gheorghe + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 227.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.975000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 964 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.271508 + lng: 27.9684111 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ing. Andrei Gheorghe + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 339.35 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.982000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 965 + fields: + parent_id: null + status: 1 + street_number: '82' + address: Mihai Eminescu + county: Brăila + locality: Brăila + lat: 45.2716172 + lng: 27.96646 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1919 + surface: 1020.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.990000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 966 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Vapoarelor + county: Brăila + locality: Brăila + lat: 45.2688116 + lng: 27.9770399 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 652.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:18.998000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 967 + fields: + parent_id: null + status: 1 + street_number: '119' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.271888 + lng: 27.967515 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 506.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.005000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 968 + fields: + parent_id: null + status: 1 + street_number: '125' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.2721493 + lng: 27.9675601 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 770.8 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.011000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 969 + fields: + parent_id: null + status: 1 + street_number: '130' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.2707897 + lng: 27.9678341 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1917 + surface: 1048.9 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.016000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 970 + fields: + parent_id: null + status: 1 + street_number: '136' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.2716813 + lng: 27.967797 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1903 + surface: 1062.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.022000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 971 + fields: + parent_id: null + status: 1 + street_number: '161' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.273501 + lng: 27.968327 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 598.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.027000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 972 + fields: + parent_id: null + status: 1 + street_number: '163' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.273638 + lng: 27.968396 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1909 + surface: 948.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.034000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 973 + fields: + parent_id: null + status: 1 + street_number: '195' + address: B-dul Al.I.Cuza + county: Brăila + locality: Brăila + lat: 45.275265 + lng: 27.9693968 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Cosovliu Octavian + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 679.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.042000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 974 + fields: + parent_id: null + status: 1 + street_number: '10' + address: P-ta Traian + county: Brăila + locality: Brăila + lat: 45.2709653 + lng: 27.974709 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 943.33 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.050000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 975 + fields: + parent_id: null + status: 1 + street_number: '14' + address: P-ta Traian + county: Brăila + locality: Brăila + lat: 45.2708719 + lng: 27.9744382 + risk_category: RS1 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1904 + surface: 1216.4 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.055000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 976 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Calea Calarasilor + county: Brăila + locality: Brăila + lat: 45.268378 + lng: 27.9737131 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 780.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.062000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 977 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Calea Calarasilor + county: Brăila + locality: Brăila + lat: 45.2679777 + lng: 27.9734483 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 481.1 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.066000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 978 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Calea Calarasilor + county: Brăila + locality: Brăila + lat: 45.267314 + lng: 27.97267 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 1409.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.070000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 979 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Rosie + county: Brăila + locality: Brăila + lat: 45.2706073 + lng: 27.9614322 + risk_category: RS1 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 1456.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.074000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 980 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Rosie + county: Brăila + locality: Brăila + lat: 45.269456 + lng: 27.973893 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 490.2 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.080000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 981 + fields: + parent_id: null + status: 1 + street_number: '96' + address: 1 Decembrie 1918 + county: Brăila + locality: Brăila + lat: 45.2714554 + lng: 27.9631591 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 487.75 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.087000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 982 + fields: + parent_id: null + status: 1 + street_number: '100' + address: 1 Decembrie 1918 + county: Brăila + locality: Brăila + lat: 45.2714554 + lng: 27.9631591 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 463.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.096000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 983 + fields: + parent_id: null + status: 1 + street_number: '107' + address: 1 Decembrie 1918 + county: Brăila + locality: Brăila + lat: 45.2714554 + lng: 27.9631591 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1919 + surface: 816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.104000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 984 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Brasoveni + county: Brăila + locality: Brăila + lat: 45.2699058 + lng: 27.9737796 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.109000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 985 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Justitiei + county: Brăila + locality: Brăila + lat: 45.2676602 + lng: 27.9731386 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 1102.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.114000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 986 + fields: + parent_id: null + status: 1 + street_number: '62' + address: Cetatii + county: Brăila + locality: Brăila + lat: 45.277028 + lng: 27.9788961 + risk_category: RS1 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1867 + surface: 307.78 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.120000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 987 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Gradinii Publice + county: Brăila + locality: Brăila + lat: 45.2732203 + lng: 27.9779683 + risk_category: RS1 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Dr. Ing. Beche Vasile + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 657.5 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.124000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 988 + fields: + parent_id: null + status: 1 + street_number: '148' + address: B-dul Independentei + county: Brăila + locality: Brăila + lat: 45.273046 + lng: 27.966141 + risk_category: RS1 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.128000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 989 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Bolintineanu + county: Brăila + locality: Brăila + lat: 45.2740795 + lng: 27.9761605 + risk_category: RS1 + height_regime: S+P+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 652.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.135000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 990 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Panait Istrati + county: Brăila + locality: Brăila + lat: 45.277104 + lng: 27.975564 + risk_category: RS1 + height_regime: D+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 771.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.143000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 991 + fields: + parent_id: null + status: 1 + street_number: '13' + address: C.A. Rosetti + county: Brăila + locality: Brăila + lat: 45.273289 + lng: 27.975868 + risk_category: RS1 + height_regime: D+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 823.6 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.150000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 992 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Petru Maior + county: Brăila + locality: Brăila + lat: 45.2709099 + lng: 27.96947 + risk_category: RS1 + height_regime: S+P+E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Ing. Cruceanu Dan + observations: '' + has_warning_panels: null + year_built: 1860 + surface: 876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.155000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 993 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Petru Maior + county: Brăila + locality: Brăila + lat: 45.2710931 + lng: 27.969459 + risk_category: RS1 + height_regime: S+P+E+M + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1865 + surface: 472.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.160000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 994 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Marasesti + county: Brăila + locality: Brăila + lat: 45.27502 + lng: 27.9714169 + risk_category: RS1 + height_regime: S+D+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dr. Ing. Gramescu A.M. + observations: '' + has_warning_panels: null + year_built: 1868 + surface: 609.64 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.164000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 995 + fields: + parent_id: null + status: 1 + street_number: 3(bloc D4) + address: Aleea Narciselor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.64019372 + lng: 22.65123258 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Tudor Dan + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 4930.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.183000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 996 + fields: + parent_id: null + status: 1 + street_number: 60(bloc D1) + address: Strada Crișan + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6401359 + lng: 22.6495814 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Tudor Dan + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 4930.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.191000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 997 + fields: + parent_id: null + status: 1 + street_number: 3(bloc D3) + address: Aleea Narciselor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.64001587 + lng: 22.65076427 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Tudor Dan + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 4930.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.198000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 998 + fields: + parent_id: null + status: 1 + street_number: 3(bloc D2) + address: Aleea Narciselor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.63985437 + lng: 22.65033044 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Tudor Dan + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 4930.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.205000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 999 + fields: + parent_id: null + status: 1 + street_number: 60(bloc A0) + address: Strada Crișan + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6401359 + lng: 22.6495814 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Tudor Dan + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 6165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.211000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1000 + fields: + parent_id: null + status: 1 + street_number: 3(bloc A1) + address: Aleea Castanilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.63821908 + lng: 22.649019 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 6165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.215000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1001 + fields: + parent_id: null + status: 1 + street_number: 3(bloc A2) + address: Aleea Castanilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.63818855 + lng: 22.64872932 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1964 + surface: 6165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.219000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1002 + fields: + parent_id: null + status: 1 + street_number: 3(bloc A3) + address: Aleea Castanilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.63813511 + lng: 22.64845037 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1966 + surface: 6165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.223000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1003 + fields: + parent_id: null + status: 1 + street_number: 3(bloc A4) + address: Aleea Castanilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.63814274 + lng: 22.64801585 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1965 + surface: 6165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.228000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1004 + fields: + parent_id: null + status: 1 + street_number: 2(bloc T4) + address: Aleea Privighetorilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6390861 + lng: 22.6557225 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1974 + surface: 4217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.235000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1005 + fields: + parent_id: null + status: 1 + street_number: 7(bloc T5) + address: W. Maracineanu + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6409681 + lng: 22.6577427 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 4217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.243000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1006 + fields: + parent_id: null + status: 1 + street_number: 5(bloc T6) + address: W. Maracineanu + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6406053 + lng: 22.6578418 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 4217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.251000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1007 + fields: + parent_id: null + status: 1 + street_number: 3(bloc T7) + address: W. Maracineanu + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6402204 + lng: 22.657865 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1973 + surface: 4217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.257000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1008 + fields: + parent_id: null + status: 1 + street_number: 7(bloc J2) + address: Aleea Privighetorilor + county: Mehedinți + locality: Drobeta Turnu-Severin + lat: 44.6407586 + lng: 22.6544711 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vacaru Victor + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 3200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.263000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1009 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Portile de Fier + county: Mehedinți + locality: Orșova + lat: 44.73425164 + lng: 22.404752 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1977 + certified_expert: S.C. Tora S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 6914.15 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.267000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1010 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Crizantemelor + county: Mehedinți + locality: Orșova + lat: 44.7307213 + lng: 22.4011201 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1977 + certified_expert: S.C. Tora S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 5185.62 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.271000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1011 + fields: + parent_id: null + status: 1 + street_number: '26' + address: B-dul 1 Decembrie 1918 + county: Mehedinți + locality: Orșova + lat: 44.719727 + lng: 22.398322 + risk_category: RS2 + height_regime: P+4E + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Pronixrom S.R.L + observations: '' + has_warning_panels: false + year_built: 1968 + surface: 4762.22 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.276000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1012 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Ghioceilor + county: Mehedinți + locality: Orșova + lat: 44.7286 + lng: 22.37741 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1972 + surface: 105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.282000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1013 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Decebal + county: Mehedinți + locality: Orșova + lat: 44.723161 + lng: 22.3945599 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 340.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.290000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1014 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Poiana Stelei + county: Mehedinți + locality: Orșova + lat: 44.7294001 + lng: 22.3787417 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 102.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.298000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1015 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Poiana Stelei + county: Mehedinți + locality: Orșova + lat: 44.729914 + lng: 22.379881 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 78.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.304000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1016 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Poiana Stelei + county: Mehedinți + locality: Orșova + lat: 44.72918001 + lng: 22.38103415 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 72.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.309000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1017 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Poiana Stelei + county: Mehedinți + locality: Orșova + lat: 44.72912913 + lng: 22.38112903 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 48.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.313000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1018 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Eroilor + county: Mehedinți + locality: Orșova + lat: 44.7262677 + lng: 22.3880264 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 138.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.317000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1019 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Traian + county: Mehedinți + locality: Orșova + lat: 44.7174047 + lng: 22.3961276 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 288.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.321000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1020 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Traian + county: Mehedinți + locality: Orșova + lat: 44.717826 + lng: 22.395517 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.326000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1021 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Traian + county: Mehedinți + locality: Orșova + lat: 44.7179567 + lng: 22.395376 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.333000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1022 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Ghioceilor + county: Mehedinți + locality: Orșova + lat: 44.7286258 + lng: 22.3773798 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: ConsolidationChoice.NO + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: S.C. Locuinte Con Proiect S.R.L + observations: '' + has_warning_panels: false + year_built: 1970 + surface: 70.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2021-11-29 14:05:19.340000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1023 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Calea Bucureşti, nr. 126 + county: Dolj + locality: Craiova + lat: 44.312532 + lng: 23.8534718 + risk_category: RS3 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: ing. Pârvu Marin + observations: sediu Spitalul Clinic de Boli Infecţioase şi Pneumoftiziologie "Victor + Babeş" Craiova - Secţia TBC corp 3B + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:10.544000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1024 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Calea Bucureşti, nr. 99 + county: Dolj + locality: Craiova + lat: 44.31293106 + lng: 23.84907341 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: ing. Gavrilă Gheorghe + observations: sediu Spitalul Clinic de Neuropsihiatrie - Pavilion psihiatrie 2 + has_warning_panels: null + year_built: 1908 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:11.115000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1025 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Calea Bucureşti, nr. 99 + county: Dolj + locality: Craiova + lat: 44.3180825 + lng: 23.816594 + risk_category: RS3 + height_regime: P + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: ing. Stângă Gheorghe + observations: sediu Spitalul Clinic de Neuropsihiatrie - Centru de Sănătate Mintală + has_warning_panels: null + year_built: 1908 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:11.628000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1026 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. C. D. Fortunescu, nr. 2 + county: Dolj + locality: Craiova + lat: 44.3145371 + lng: 23.8009521 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: ing. Gavrilă Gheorghe + observations: sediu ISU Dolj - pavilion administrat IV - Evacuat 2008 + has_warning_panels: null + year_built: 1846 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:12.123000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1027 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Împăratul Traian, nr. 39 + county: Dolj + locality: Craiova + lat: 44.3160825 + lng: 23.806321 + risk_category: RS2 + height_regime: S parţial+P+1E + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: ing. Hotinceanu Mihail + observations: clădire Grup Şcolar Charles Laugier - închiriat către Şcoala Postliceală + Christiana + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:12.644000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1028 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Împăratul Traian, nr. 39 + county: Dolj + locality: Craiova + lat: 44.315931 + lng: 23.806608 + risk_category: RS2 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: ing. Hotinceanu Mihail + observations: clădire Grup Şcolar Charles Laugier - închiriat către RAADPFL Craiova + - spaţiu depozitare + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:13.209000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1029 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihail Kogălniceanu, nr. 10 + county: Dolj + locality: Craiova + lat: 44.3155066 + lng: 23.7973275 + risk_category: RS3 + height_regime: Sp+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: ing. Gavrilă Gheorghe + observations: sediu Administraţia Judeţeană a Finanţelor Publice Dolj din cadrul + Direcţiei Generale Regionale a Finanţelor Publice Craiova + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:13.702000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1030 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Revoluţiei, nr. 15 + county: Dolj + locality: Craiova + lat: 44.3042995 + lng: 23.8185611 + risk_category: RS3 + height_regime: S+P+1E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Grădiniţa "Elena Farago" Craiova (fostă nr. 41) + Cresa nr. 8 - + reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:14.297000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1031 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Petru Rareş, nr. 4 + county: Dolj + locality: Craiova + lat: 44.3086524 + lng: 23.7985083 + risk_category: RS3 + height_regime: S+P+2E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: ing. Pârvu Marin + observations: Sediu clădire Medicina Veche + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:14.790000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1032 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul 1 Mai, nr. 68 + county: Dolj + locality: Craiova + lat: 44.3046504 + lng: 23.7945268 + risk_category: RS3 + height_regime: Sp+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: ing. Greblescu Daniel + observations: Cantina Facultăţii de Medicină şi Farmacie + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:15.404000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1033 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Calea Unirii, nr. 16 + county: Dolj + locality: Craiova + lat: 44.317254 + lng: 23.7944768 + risk_category: RS2 + height_regime: Sp+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Ing. Dumitrescu Dan ing. Pârvu Marin + observations: Filarmonica Oltenia - Consolidat buget local + has_warning_panels: null + year_built: 1957 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:15.906000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1034 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Stirbei Voda nr.2 + county: Dolj + locality: Craiova + lat: 44.3139207 + lng: 23.7951431 + risk_category: RS2 + height_regime: P+E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Anatolie Cazacliu + observations: Casa Rusănescu (sediu Casa Căsătoriilor) - exista autorizatie de + construire a fost realizat proiectul + has_warning_panels: null + year_built: 1898 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:16.404000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1035 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. A. I. Cuza nr. 1 S1 + county: Dolj + locality: Craiova + lat: 44.3184394 + lng: 23.7948393 + risk_category: RS2 + height_regime: S+P+M+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Ing. Szekeres Gero + observations: Sediu 2 Primăria Craiova - în curs de consolidare + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:17.026000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1036 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. A. I. Cuza nr. 7 + county: Dolj + locality: Craiova + lat: 44.3186275 + lng: 23.7966361 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Ing. Szekeres Gero + observations: Sediu 1 Primăria Craiova - în curs de consolidare + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:17.550000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1037 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Nanterre, bl. C3, sc. 3 + county: Dolj + locality: Craiova + lat: 44.3155715 + lng: 23.8151166 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Ing. Bistriceanu Viorel + observations: bloc locuinte + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:18.197000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1038 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul Carol, nr. 150, bl. C1, sc. D + county: Dolj + locality: Craiova + lat: 44.3271628 + lng: 23.8145304 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: ing. Gavrilă Gheorghe + observations: bloc locuinte + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:18.682000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1039 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. A. I. Cuza, bl. 150 ap Sc. 1 + county: Dolj + locality: Craiova + lat: 44.3925098 + lng: 23.7409846 + risk_category: RS4 + height_regime: P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: ing. Gavrilă Gheorghe + observations: bloc locuinte + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:19.188000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1040 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Nanterre, nr. 77, bl. C2, sc. 3 + county: Dolj + locality: Craiova + lat: 44.3148963 + lng: 23.8189292 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: ing. Gavrilă Gheorghe + observations: bloc locuinte + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:19.837000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1041 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Lipscani, nr. 4 + county: Dolj + locality: Craiova + lat: 44.316552 + lng: 23.7965971 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ing. Moga Alexandru + observations: Spaţiu comercial la parter locuinţă la etaj + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:20.352000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1042 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Principatele Unite, bl. 14, sc. 2 + county: Dolj + locality: Craiova + lat: 44.3242506 + lng: 23.7971581 + risk_category: RS4 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Ing. Bistriceanu Viorel + observations: Locuintă tip apartamente + has_warning_panels: null + year_built: 1954 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:20.831000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1043 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Calea Bucureşti, nr. 48, bl. A6, sc. 4 + county: Dolj + locality: Craiova + lat: 44.3163432 + lng: 23.8175298 + risk_category: RS4 + height_regime: P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Gavrilă Gheorghe + observations: bloc locuinte + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:21.356000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1044 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. N. Titulescu, nr. 40 (fost 33) + county: Dolj + locality: Craiova + lat: 44.3253204 + lng: 23.7896357 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Guleac V. Bogdan + observations: Spital Clinic Municipal Filantropia - Cladire ambulatoriu adulti + - reabilitata in 2022 - dupa expertiza III + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:21.989000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1045 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Unirii, nr. 57 + county: Dolj + locality: Craiova + lat: 44.3122837 + lng: 23.7963748 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Ing. Niculae Teodor + observations: Casa Universitarilor + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:22.504000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1046 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Câmpia Islaz, nr. 89 + county: Dolj + locality: Craiova + lat: 44.318912 + lng: 23.783693 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Ing. Niculae Teodor + observations: Hală Didactică (Fosta Fabrică de Motoare A.Weichmann) - evacuata + has_warning_panels: null + year_built: 1850 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:23.005000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1047 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Olteţ nr. 25 (fost nr. 23) + county: Dolj + locality: Craiova + lat: 44.317823 + lng: 23.8001131 + risk_category: RS1 + height_regime: Sp+P+1E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Chirică C. Anton + observations: casa secol XIX, monument istoric părăsit - monument istoric părăsit + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:23.486000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1048 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Romain Rolland nr. 8 (fost nr. 6A) + county: Dolj + locality: Craiova + lat: 44.3170332 + lng: 23.7978017 + risk_category: RS1 + height_regime: Sp+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Voiculescu M. Mihai + observations: locuinţe, monument istoric - monument istoric evacuat + has_warning_panels: null + year_built: 1875 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:24.199000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1049 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Dr. Apelor nr. 66 Modul A1, Corp C13, Corp C14, Corp C15 + county: Dolj + locality: Craiova + lat: 44.3061153 + lng: 23.8434404 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: ing. Sofronie A Ramiro + observations: locuinte + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:24.703000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1050 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Dr. Apelor nr. 66 Module M1-M11 + county: Dolj + locality: Craiova + lat: 44.30634835 + lng: 23.8436066 + risk_category: RS1 + height_regime: P + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: ing. Sofronie A Ramiro + observations: locuinte + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:25.217000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1051 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Brestei nr. 234 + county: Dolj + locality: Craiova + lat: 44.3270157 + lng: 23.7685884 + risk_category: RS3 + height_regime: P+1 corp C1 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Gavrila Ghe. + observations: Scoala Ion Creanga - în curs de consolidare + has_warning_panels: null + year_built: 1966 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:25.715000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1052 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Brestei nr. 235 + county: Dolj + locality: Craiova + lat: 44.3263601 + lng: 23.7675164 + risk_category: RS3 + height_regime: P corp C2 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Gavrila Ghe. + observations: Scoala Ion Creanga - în curs de consolidare + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:26.478000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1053 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Brestei nr. 236 + county: Dolj + locality: Craiova + lat: 44.3264642 + lng: 23.7684224 + risk_category: RS3 + height_regime: P+2 corp C5 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Gavrila Ghe. + observations: Scoala Ion Creanga - în curs de consolidare + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:26.987000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1054 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Electroputere nr. 21 + county: Dolj + locality: Craiova + lat: 44.3060251 + lng: 23.8234601 + risk_category: RS4 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2021 + certified_expert: expert tehnic Zefir Apostol + observations: Gradinita Castelul Fermecat - in curs de proiectare + has_warning_panels: null + year_built: 1955 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:27.484000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1055 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Doljului nr. 12 + county: Dolj + locality: Craiova + lat: 44.3289225 + lng: 23.8004638 + risk_category: RS4 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2021 + certified_expert: expert tehnic Zefir Apostol + observations: Colegiul National Nicolae Titulescu C2 sala sport - in curs de proiectare + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:27.976000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1056 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Doljului nr. 12 + county: Dolj + locality: Craiova + lat: 44.32867369 + lng: 23.80012386 + risk_category: RS3 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2021 + certified_expert: expert tehnic Zefir Apostol + observations: Colegiul National Nicolae Titulescu - cladire - in curs de proiectare + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:28.472000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1057 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Principatele Unite nr.1 + county: Dolj + locality: Craiova + lat: 44.3223759 + lng: 23.795766 + risk_category: RS2 + height_regime: Sp+P+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Mihai Pavel + observations: Gradinita Casuta Fermecata - in curs de proiectare, inclusa in lista + de sinteză PNCCRS (Programul național de reabilitare a cladirilor cu risc seismic + ridicat) + has_warning_panels: null + year_built: 1922 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:29.232000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1058 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Stefan Velovan nr.4 + county: Dolj + locality: Craiova + lat: 44.3169628 + lng: 23.8193464 + risk_category: RS4 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Mihai Pavel + observations: Gradinita Pinochio - in curs de proiectare + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:29.755000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1059 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Lamaitei nr.4 P+2 corp C1 + county: Dolj + locality: Craiova + lat: 44.3269844 + lng: 23.8067868 + risk_category: RS3 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: expert tehnic ing. Gavrila Ghe. + observations: corp C2 Scoala Gimnaziala Sf. Gheorghe - în curs de obținere autorizație + de construire + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:30.262000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1060 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 87 + county: Dolj + locality: Craiova + lat: 44.3297089 + lng: 23.8039821 + risk_category: RS3 + height_regime: P+2 corp A P corp B P+2 corp C + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: expert tehnic ing. Gavrila Ghe. + observations: Scoala Gimnaziala Sf. Gheorghe - in curs de proiectare + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:30.769000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1061 + fields: + parent_id: null + status: 1 + street_number: '' + address: 'str. Ion Maiorescu nr.2 ' + county: Dolj + locality: Craiova + lat: 44.318491 + lng: 23.7920483 + risk_category: RS2 + height_regime: 'Sp+P+M+E1 ' + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2020 + certified_expert: ing. Szalontay Coloman Andrei + observations: Colegiul National Carol I - sala sport - dupa reabilitare IV + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:31.284000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1062 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Ion Maiorescu nr.6 + county: Dolj + locality: Craiova + lat: 44.317316 + lng: 23.791428 + risk_category: RS2 + height_regime: S+P+2E colegiul S+P+3E Opera + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: ing. Popescu Dumitru Dan Badea Dragos Coriolan + observations: Colegiul National Carol I - corp central si Opera Romana - în curs + de consolidare dupa reabilitare III + has_warning_panels: null + year_built: 1895 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:32.069000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1063 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Raului nr.2 + county: Dolj + locality: Craiova + lat: 44.3207091 + lng: 23.773316 + risk_category: RS4 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: expert tehnic ing. Gavrila Ghe. + observations: Gradinita Voinicelu structura Scoala Ion Creanga - în curs de consolidare + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:32.616000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1064 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brestei nr. 129 + county: Dolj + locality: Craiova + lat: 44.3221354 + lng: 23.7771418 + risk_category: N/A + height_regime: P+1 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Stefan Catalin + observations: Liceul Charles Laugier - corp C9 - în curs de evaluare în PNCCRS + (Programul național de reabilitare a cladirilor cu risc seismic ridicat) dupa + reabilitare IV + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:33.141000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1065 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 106 + county: Dolj + locality: Craiova + lat: 44.3306553 + lng: 23.8116927 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 43 IVA1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:33.699000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1066 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Dacia nr. 185 + county: Dolj + locality: Craiova + lat: 44.3298241 + lng: 23.8111019 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 75 IVA1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:34.175000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1067 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr.1 + county: Dolj + locality: Craiova + lat: 44.3133921 + lng: 23.9020562 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 23C - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:34.695000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1068 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr.3 + county: Dolj + locality: Craiova + lat: 44.3211531 + lng: 23.7973278 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 23D - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:35.219000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1069 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Parcului nr.2 + county: Dolj + locality: Craiova + lat: 44.3252817 + lng: 23.7770016 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc C1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:36.088000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1070 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Breazu nr.1 + county: Dolj + locality: Craiova + lat: 44.3301785 + lng: 23.7948808 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc H14 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:36.592000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1071 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Argetoianu nr. 46 + county: Dolj + locality: Craiova + lat: 44.3278638 + lng: 23.8106812 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc K33 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:37.064000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1072 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Argetoianu nr. 44 + county: Dolj + locality: Craiova + lat: 44.3278223 + lng: 23.8103534 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc K34 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:37.513000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1073 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Parcului nr.4 + county: Dolj + locality: Craiova + lat: 44.3249955 + lng: 23.7768366 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc C3 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:38.025000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1074 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Serban Voda nr. 30 + county: Dolj + locality: Craiova + lat: 44.3265103 + lng: 23.7982731 + risk_category: RS3 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc C13c - in curs de reabilitare termica + has_warning_panels: null + year_built: 1994 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:38.531000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1075 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Serban Voda nr. 32 + county: Dolj + locality: Craiova + lat: 44.3265646 + lng: 23.7978573 + risk_category: RS3 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc C13b - in curs de reabilitare termica + has_warning_panels: null + year_built: 1994 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:39.049000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1076 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Stefan Falcoianu nr.6 + county: Dolj + locality: Craiova + lat: 44.3305637 + lng: 23.8018263 + risk_category: RS3 + height_regime: S+P+1E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Casuta cu Povesti - reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:39.936000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1077 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Amaradia nr. 70 bl. F5A + county: Dolj + locality: Craiova + lat: 44.3319031 + lng: 23.7941346 + risk_category: RS4 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Curcubeul copilariei - reabilitare + termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:40.440000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1078 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Aurel Vlaicu nr. 10 + county: Dolj + locality: Craiova + lat: 44.3064873 + lng: 23.8138022 + risk_category: RS3 + height_regime: S+P+1E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Ion Creanga - reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:40.942000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1079 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Oltenia nr. 81 + county: Dolj + locality: Craiova + lat: 44.3335654 + lng: 23.7817488 + risk_category: RS3 + height_regime: S+P+1E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Phoenix - reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:41.423000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1080 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Tineretului nr. 28 + county: Dolj + locality: Craiova + lat: 44.3375835 + lng: 23.779443 + risk_category: RS3 + height_regime: S+P+1E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Floarea Albastra + Cresa nr.3 - reabilitare + termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:41.913000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1081 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Elena Farago nr. 17 + county: Dolj + locality: Craiova + lat: 44.3406521 + lng: 23.7747285 + risk_category: RS3 + height_regime: Sp+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: Gradinita cu program prelungit Piticot + Cresa nr.5 - reabilitare + termica + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:42.435000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1082 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gorunului nr.7 + county: Dolj + locality: Craiova + lat: 44.340699 + lng: 23.771777 + risk_category: RS3 + height_regime: S+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc 169E - în curs de reabilitare termică + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:42.942000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1083 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Paltinului nr.6 + county: Dolj + locality: Craiova + lat: 44.3384964 + lng: 23.7696287 + risk_category: RS3 + height_regime: S+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc 175C - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:43.422000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1084 + fields: + parent_id: null + status: 1 + street_number: '' + address: ale. Constantin Brancusi nr.11 + county: Dolj + locality: Craiova + lat: 44.3253843 + lng: 23.7937359 + risk_category: RS3 + height_regime: S+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc A2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:44.352000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1085 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Enescu nr.45 + county: Dolj + locality: Craiova + lat: 44.3300586 + lng: 23.7839012 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc A3 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:44.874000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1086 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr.45 + county: Dolj + locality: Craiova + lat: 44.327005 + lng: 23.7967297 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc A15 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:45.436000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1087 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. 1 decembrie 1918 nr.1 + county: Dolj + locality: Craiova + lat: 44.3272915 + lng: 23.7969277 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc A16 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:46.033000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1088 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Enescu nr.43 + county: Dolj + locality: Craiova + lat: 44.3296442 + lng: 23.7843998 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc B2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:46.515000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1089 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Enescu nr.39 + county: Dolj + locality: Craiova + lat: 44.3293143 + lng: 23.784778 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc B4 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:47.048000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1090 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Henry Coanda nr. 49 + county: Dolj + locality: Craiova + lat: 44.3118396 + lng: 23.8230678 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc M0 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:47.573000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1091 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mircesti nr. 16 + county: Dolj + locality: Craiova + lat: 44.3118176 + lng: 23.8233393 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc M1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:48.060000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1092 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Fratii Golesti nr. 107 + county: Dolj + locality: Craiova + lat: 44.3282279 + lng: 23.8117441 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc K27 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:48.570000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1093 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Fratii Golesti nr. 106 + county: Dolj + locality: Craiova + lat: 44.3277785 + lng: 23.812125 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc K31 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:49.578000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1094 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Fratii Golesti nr. 104 + county: Dolj + locality: Craiova + lat: 44.3275879 + lng: 23.8119567 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Belgun Ionel + observations: bloc K32 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:50.076000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1095 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 64 + county: Dolj + locality: Craiova + lat: 44.3145591 + lng: 23.8255283 + risk_category: RS3 + height_regime: Sp+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Belgun Ionel + observations: Spitalul Clinic de Boli Infecţioase şi Pneumoftiziologie "Victor + Babes" Craiova - cladire pavilion contagiosi II (C3) - reabilitare termica + has_warning_panels: null + year_built: 1959 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:50.575000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1096 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 64 + county: Dolj + locality: Craiova + lat: 44.31434247 + lng: 23.82529264 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Belgun Ionel + observations: Spitalul Clinic de Boli Infecţioase şi Pneumoftiziologie "Victor + Babes" Craiova - cladire pavilion boli infectioase (C4) - reabilitare termica + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:51.089000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1097 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brestei nr. 144 + county: Dolj + locality: Craiova + lat: 44.3258999 + lng: 23.7738287 + risk_category: RS3 + height_regime: Stp+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Belgun Ionel + observations: Colegiul Tehnic de Industrie Alimentara - reabilitare termica + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:51.561000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1098 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Victor Gomoiu nr.26 + county: Dolj + locality: Craiova + lat: 44.2998224 + lng: 23.7937012 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc I1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:52.045000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1099 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Victor Gomoiu nr.14A + county: Dolj + locality: Craiova + lat: 44.2979408 + lng: 23.7947229 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc I11 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:52.515000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1100 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Pascani nr. 26 + county: Dolj + locality: Craiova + lat: 44.3301234 + lng: 23.7834348 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc A1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:53.024000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1101 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Razboieni nr. 10 + county: Dolj + locality: Craiova + lat: 44.329279 + lng: 23.7839636 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc B7 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:53.480000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1102 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Razboieni nr. 8 + county: Dolj + locality: Craiova + lat: 44.3291193 + lng: 23.7841718 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc B6 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:53.967000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1103 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Penes Curcanul nr. 6 + county: Dolj + locality: Craiova + lat: 44.3298019 + lng: 23.7833172 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc A6 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:54.452000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1104 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Oltenia nr. 13 + county: Dolj + locality: Craiova + lat: 44.33957 + lng: 23.7743859 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 146F - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:55.664000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1105 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. 1 Mai nr.3 + county: Dolj + locality: Craiova + lat: 44.3076276 + lng: 23.7924813 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc M22 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:56.193000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1106 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Delul Spirii nr. 22 + county: Dolj + locality: Craiova + lat: 44.3301785 + lng: 23.7948808 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc M25 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1990 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:56.708000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1107 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Buzias nr. 6 + county: Dolj + locality: Craiova + lat: 44.3118556 + lng: 23.7921216 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc M32 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1990 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:57.216000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1108 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Bibescu nr. 29 + county: Dolj + locality: Craiova + lat: 44.311478 + lng: 23.7872636 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc P6 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:57.705000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1109 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Dacia nr. 12 + county: Dolj + locality: Craiova + lat: 44.3398606 + lng: 23.7706825 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc 173F - în curs de reabilitare termică + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:58.211000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1110 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Bibescu nr. 31 + county: Dolj + locality: Craiova + lat: 44.3112875 + lng: 23.7870955 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: Ing. Niculae Teodor + observations: bloc P7 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:07:58.708000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1111 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Arh. Duiliu Marcu nr. 16 + county: Dolj + locality: Craiova + lat: 44.336758 + lng: 23.7813899 + risk_category: RS3 + height_regime: Sth+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Stefan Catalin + observations: Scoala Gimnaziala Mihai Viteazu - corp C1 - reabilitare termica + has_warning_panels: null + year_built: 1971 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.144000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1112 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea unirii nr. 11 + county: Dolj + locality: Craiova + lat: 44.319732 + lng: 23.7946775 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.318000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1113 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea unirii nr. 11 + county: Dolj + locality: Craiova + lat: 44.319826 + lng: 23.79502304 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bl. 3 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.466000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1114 + fields: + parent_id: null + status: 1 + street_number: '' + address: ale. Arh. Duiliu Marcu nr. 14 + county: Dolj + locality: Craiova + lat: 44.338222 + lng: 23.7811914 + risk_category: RS3 + height_regime: S+P+10E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bl. 10 sc.1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.664000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1115 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Popa Sapca nr.14 + county: Dolj + locality: Craiova + lat: 44.3190406 + lng: 23.7929112 + risk_category: RS3 + height_regime: S+P+4E+5Ep + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 14 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.840000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1116 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. 1 Mai nr. 57 + county: Dolj + locality: Craiova + lat: 44.3049123 + lng: 23.7958337 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 17a - in curs de reabilitare termica + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:40.960000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1117 + fields: + parent_id: null + status: 1 + street_number: '' + address: Calea Unirii nr. 21 + county: Dolj + locality: Craiova + lat: 44.3169429 + lng: 23.7953444 + risk_category: RS3 + height_regime: S+P+M+3E+4R + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 21A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.091000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1118 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Brancoveanu nr. 25 + county: Dolj + locality: Craiova + lat: 44.3310673 + lng: 23.7788776 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 42A1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.220000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1119 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Lamaitei nr.8 + county: Dolj + locality: Craiova + lat: 44.3280014 + lng: 23.8066418 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 68B - în curs de reabilitare termică + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.368000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1120 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Dr. Ion Cernatescu nr.9 + county: Dolj + locality: Craiova + lat: 44.3282005 + lng: 23.8092064 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 79 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.527000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1121 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Fotino nr.1 + county: Dolj + locality: Craiova + lat: 44.3188612 + lng: 23.8163486 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc B8 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.671000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1122 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 64A + county: Dolj + locality: Craiova + lat: 44.3293585 + lng: 23.8040221 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc C6 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.840000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1123 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihail Cerchez nr.4 + county: Dolj + locality: Craiova + lat: 44.329103 + lng: 23.8043205 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc C6 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:41.974000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1124 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Ilie Balaci nr.7 + county: Dolj + locality: Craiova + lat: 44.312061 + lng: 23.7883515 + risk_category: RS3 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc D2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.098000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1125 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Ilie Balaci nr.5 + county: Dolj + locality: Craiova + lat: 44.3127135 + lng: 23.7881816 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc D3A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.201000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1126 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. 1 Mai nr.2 + county: Dolj + locality: Craiova + lat: 44.3120363 + lng: 23.7893221 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc D4A sc.2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.318000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1127 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Ilie Balaci nr.3 + county: Dolj + locality: Craiova + lat: 44.3127135 + lng: 23.7881816 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc D4A1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.458000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1128 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Lalelelor nr.2 + county: Dolj + locality: Craiova + lat: 44.3118344 + lng: 23.7894639 + risk_category: RS3 + height_regime: S+P+7E+Eth+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc D5 sc.1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.585000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1129 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Basarabia nr.9 + county: Dolj + locality: Craiova + lat: 44.3269112 + lng: 23.8159 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc E2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1972 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.719000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1130 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Nicolae Titulescu nr. 29 + county: Dolj + locality: Craiova + lat: 44.3253406 + lng: 23.7879533 + risk_category: RS3 + height_regime: S+P+10E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc I4 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:42.861000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1131 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Nanterre nr. 71 + county: Dolj + locality: Craiova + lat: 44.314919 + lng: 23.8183964 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc I5 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.017000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1132 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Nanterre nr. 37 + county: Dolj + locality: Craiova + lat: 44.3154559 + lng: 23.8161352 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc I6 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.108000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1133 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr.8 + county: Dolj + locality: Craiova + lat: 44.3129461 + lng: 23.8368745 + risk_category: RS3 + height_regime: S+P+9E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc M7 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.209000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1134 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr.12 + county: Dolj + locality: Craiova + lat: 44.3190076 + lng: 23.8032201 + risk_category: RS3 + height_regime: S+P+7E+8Er + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc M8A - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.342000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1135 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. 1 Mai nr.5 + county: Dolj + locality: Craiova + lat: 44.3114268 + lng: 23.7912274 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc M20 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.484000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1136 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Eustatiu Stoenescu nr.1D + county: Dolj + locality: Craiova + lat: 44.3147158 + lng: 23.8352159 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc N13 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.623000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1137 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Eustatiu Stoenescu nr.1B + county: Dolj + locality: Craiova + lat: 44.3142786 + lng: 23.8361759 + risk_category: RS3 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc T9 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.761000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1138 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihai Viteazu nr.2 + county: Dolj + locality: Craiova + lat: 44.3193555 + lng: 23.7942362 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dan Dumitru + observations: bloc 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:43.912000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1139 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Fotino nr. 8 + county: Dolj + locality: Craiova + lat: 44.3190334 + lng: 23.816903 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc B12 sc.1, 2 si 3 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.072000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1140 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Ion Maiorescu nr.2 + county: Dolj + locality: Craiova + lat: 44.318491 + lng: 23.7920483 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Colegiul National Carol I - corp C13 - reabilitare termica + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.178000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1141 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Dr. Dimitrie Gerota nr.22 + county: Dolj + locality: Craiova + lat: 44.3021677 + lng: 23.7932733 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Colegiul Economic Gheorghe Chitu - C2 - reabilitare termica + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.286000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1142 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Nicolae Titulescu nr. 64 + county: Dolj + locality: Craiova + lat: 44.3270806 + lng: 23.7851516 + risk_category: RS3 + height_regime: P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gimnaziala Decebal - C1 - reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.413000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1143 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Elena Farago nr.19 + county: Dolj + locality: Craiova + lat: 44.3400511 + lng: 23.7744838 + risk_category: RS3 + height_regime: Sp+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gimnaziala Elena Farago - C1 - reabilitare termica + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.545000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1144 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Vasile Alecsandri nr. 113 + county: Dolj + locality: Craiova + lat: 44.3218625 + lng: 23.8169327 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Liceul Matei Basarab - C1 - reabilitare termica + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.670000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1145 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Vasile Alecsandri nr. 87 + county: Dolj + locality: Craiova + lat: 44.3217395 + lng: 23.8115566 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Gradinita cu Program Prelungit Petrache Poenaru - C1 - reabilitare + termica + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.826000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1146 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Vantului nr.3 + county: Dolj + locality: Craiova + lat: 44.3065657 + lng: 23.8161114 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gimnaziala Nicolae Romanescu - C1 - reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:44.980000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1147 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Nicolae Romanescu nr. 99 + county: Dolj + locality: Craiova + lat: 44.2919522 + lng: 23.7998386 + risk_category: RS2 + height_regime: P+2E P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Liceul Tehnologic de Transporturi Auto - C1 - în curs de evaluare + în PNCCRS (Programul național de reabilitare a cladirilor cu risc seismic ridicat) + dupa reabilitare IV + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.137000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1148 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 76 + county: Dolj + locality: Craiova + lat: 44.3301324 + lng: 23.8069838 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 37 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.258000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1149 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 74 + county: Dolj + locality: Craiova + lat: 44.3302819 + lng: 23.8066501 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 37B - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.395000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1150 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Enescu nr. 47 + county: Dolj + locality: Craiova + lat: 44.3302076 + lng: 23.7837416 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc A2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.512000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1151 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Penes Curcanul nr.2 + county: Dolj + locality: Craiova + lat: 44.3298779 + lng: 23.7840328 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc A4 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.645000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1152 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 80 + county: Dolj + locality: Craiova + lat: 44.3303627 + lng: 23.807154 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 38 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.775000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1153 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac nr. 78 + county: Dolj + locality: Craiova + lat: 44.3302982 + lng: 23.8074464 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 38A - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:45.938000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1154 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. Dacia nr. 28 + county: Dolj + locality: Craiova + lat: 44.34238 + lng: 23.7758949 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 121B1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.102000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1155 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Elena Farago nr. 15 + county: Dolj + locality: Craiova + lat: 44.3410187 + lng: 23.7746765 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 123G - în curs de reabilitare termică + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.281000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1156 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Alexandru Buia nr. 5 + county: Dolj + locality: Craiova + lat: 44.3392002 + lng: 23.777359 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 147C - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.401000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1157 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Arh. Ctin Iotzu nr.8 + county: Dolj + locality: Craiova + lat: 44.3226711 + lng: 23.8010696 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 149D - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.518000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1158 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 48 + county: Dolj + locality: Craiova + lat: 44.3163432 + lng: 23.8175298 + risk_category: RS3 + height_regime: canal the.+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc A6 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.619000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1159 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Penes Curcanul nr.1 + county: Dolj + locality: Craiova + lat: 44.3295494 + lng: 23.7841417 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc B1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.740000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1160 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Enescu nr.41 + county: Dolj + locality: Craiova + lat: 44.3295163 + lng: 23.784636 + risk_category: RS4 + height_regime: S+P+3E+4E r + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc B3 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:46.866000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1161 + fields: + parent_id: null + status: 1 + street_number: '' + address: bld. 1 Mai nr.1 + county: Dolj + locality: Craiova + lat: 44.3116934 + lng: 23.7907064 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Pavel C. Mihai + observations: bloc M23 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.005000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1162 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Recunostintei nr.14 + county: Dolj + locality: Craiova + lat: 44.3099766 + lng: 23.8064161 + risk_category: RS3 + height_regime: Sp+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Gradinita Floare de colt - C1 - reabilitare termica + has_warning_panels: null + year_built: 1949 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.164000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1163 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. I.Ghe. Duca nr.5 + county: Dolj + locality: Craiova + lat: 44.3301785 + lng: 23.7948808 + risk_category: RS3 + height_regime: Sth+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Gradinita Sfanta Lucia - C1 - reabilitare termica + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.293000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1164 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Electroputere nr. 21 + county: Dolj + locality: Craiova + lat: 44.3060251 + lng: 23.8234601 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Liceul Voltaire - C1 - reabilitare termica + has_warning_panels: null + year_built: 1969 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.406000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1165 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Castanilor nr.4 + county: Dolj + locality: Craiova + lat: 44.3371527 + lng: 23.7857359 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gimnaziala Alexandru Macedonski - C1 - reabilitare termica + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.533000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1166 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 93 + county: Dolj + locality: Craiova + lat: 44.3180048 + lng: 23.8138136 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gheorghe Titeica - C1 - reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.668000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1167 + fields: + parent_id: null + status: 1 + street_number: '' + address: Str. Closca nr. 1 + county: Dolj + locality: Craiova + lat: 44.3134778 + lng: 23.8177929 + risk_category: RS3 + height_regime: Sp+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Mircea Eliade - C1 - reabilitare termica + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.818000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1168 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Brancusi nr. 15 + county: Dolj + locality: Craiova + lat: 44.3259035 + lng: 23.7952712 + risk_category: RS2 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: sala sport Sp+P+Mp cantina Liceul Tehnologic Transporturi Cai Ferate + - C12 (sala sport) - în curs de evaluare în PNCCRS (Programul național de reabilitare + a cladirilor cu risc seismic ridicat) consolidare IV + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:47.993000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1169 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Brancusi nr. 15 + county: Dolj + locality: Craiova + lat: 44.32556128 + lng: 23.79480765 + risk_category: RS3 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: sala sport Sp+P+Mp cantina Liceul Tehnologic Transporturi Cai Ferate + - C12 (cantina) - în curs de evaluare în PNCCRS (Programul național de reabilitare + a cladirilor cu risc seismic ridicat) consolidare IV + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.172000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1170 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Henry Coanda nr. 48 + county: Dolj + locality: Craiova + lat: 44.3109847 + lng: 23.821527 + risk_category: RS2 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Liceul Teoretic Henry Coanda - C13 - în curs de evaluare în PNCCRS + (Programul național de reabilitare a cladirilor cu risc seismic ridicat) consolidare + IV + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.317000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1171 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Caracal nr. 81 + county: Dolj + locality: Craiova + lat: 44.304555 + lng: 23.8139361 + risk_category: RS3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Scoala Gimnaziala Nicolae Romanescu - B + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.439000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1172 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Henry Coanda nr. 48 + county: Dolj + locality: Craiova + lat: 44.3109847 + lng: 23.821527 + risk_category: RS3 + height_regime: P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Catalin Stefan + observations: Liceul Teoretic Henry Coanda - C8 + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.560000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1173 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Filantropiei nr.4A + county: Dolj + locality: Craiova + lat: 44.3222576 + lng: 23.7912368 + risk_category: RS2 + height_regime: Sp+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2020 + certified_expert: ing. Mircea Ieremia + observations: Spitalul Clinic Municipal Filantropia - în curs de evaluare în PNCCRS + (Programul național de reabilitare a cladirilor cu risc seismic ridicat) + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.697000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1174 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Tehnicii nr. 7 + county: Dolj + locality: Craiova + lat: 44.311952 + lng: 23.83757 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Constantin Pavel + observations: bloc A14 sc.1 si 2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:48.861000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1175 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 104 + county: Dolj + locality: Craiova + lat: 44.3127781 + lng: 23.8401374 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Constantin Pavel + observations: bloc O11 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.040000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1176 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Ion Tuculescu nr. 19 + county: Dolj + locality: Craiova + lat: 44.3125037 + lng: 23.8416416 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Constantin Pavel + observations: bloc O16 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.188000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1177 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 96 + county: Dolj + locality: Craiova + lat: 44.3128634 + lng: 23.8391357 + risk_category: RS4 + height_regime: D+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Constantin Pavel + observations: bloc U8 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.337000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1178 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 2 + county: Dolj + locality: Craiova + lat: 44.3152392 + lng: 23.8326511 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc nr.1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.464000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1179 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 4 + county: Dolj + locality: Craiova + lat: 44.3151959 + lng: 23.8329331 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc nr.2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.599000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1180 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 6 + county: Dolj + locality: Craiova + lat: 44.3151529 + lng: 23.8331279 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc nr.3 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.719000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1181 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 92 + county: Dolj + locality: Craiova + lat: 44.3129343 + lng: 23.8381932 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc O7 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.850000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1182 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 94 + county: Dolj + locality: Craiova + lat: 44.3129227 + lng: 23.8385031 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc O8 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:49.980000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1183 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 100 + county: Dolj + locality: Craiova + lat: 44.3128624 + lng: 23.8394841 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc O10 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.142000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1184 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Tehnicii nr.5 + county: Dolj + locality: Craiova + lat: 44.3127512 + lng: 23.8378762 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc U2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.297000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1185 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 102 + county: Dolj + locality: Craiova + lat: 44.3129035 + lng: 23.8398987 + risk_category: RS4 + height_regime: D+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc U7 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.428000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1186 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 90 + county: Dolj + locality: Craiova + lat: 44.3131377 + lng: 23.8379841 + risk_category: RS4 + height_regime: D+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: ing. Constantin Pavel + observations: bloc U9 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.553000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1187 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 8 + county: Dolj + locality: Craiova + lat: 44.3150354 + lng: 23.8334025 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc nr.4 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.671000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1188 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 108 + county: Dolj + locality: Craiova + lat: 44.3127393 + lng: 23.8409183 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc O13 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.810000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1189 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 110 + county: Dolj + locality: Craiova + lat: 44.3127277 + lng: 23.8412283 + risk_category: RS4 + height_regime: D+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc O14 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:50.953000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1190 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 14 + county: Dolj + locality: Craiova + lat: 44.31583 + lng: 23.833174 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc S4 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1990 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.130000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1191 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Ion Tuculescu nr. 17 + county: Dolj + locality: Craiova + lat: 44.3124083 + lng: 23.8422266 + risk_category: RS4 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc U6a - in curs de reabilitare termica + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.298000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1192 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 12 + county: Dolj + locality: Craiova + lat: 44.3158523 + lng: 23.8328153 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc S5 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1990 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.443000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1193 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 114 + county: Dolj + locality: Craiova + lat: 44.3126738 + lng: 23.8421411 + risk_category: RS4 + height_regime: D+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc U6b - in curs de reabilitare termica + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.568000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1194 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Grigore Plesoianu nr. 10 + county: Dolj + locality: Craiova + lat: 44.3156403 + lng: 23.8327443 + risk_category: RS4 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: ing. Constantin Pavel + observations: bloc S6 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.713000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1195 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gheorghe Vaslan A + county: Dolj + locality: Craiova + lat: 44.3061517 + lng: 23.811303 + risk_category: RS3 + height_regime: S+p+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 125 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.837000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1196 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 16 + county: Dolj + locality: Craiova + lat: 44.3071559 + lng: 23.8118942 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 121 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:51.988000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1197 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 18 + county: Dolj + locality: Craiova + lat: 44.307328 + lng: 23.812024 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 120 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:52.139000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1198 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 14 + county: Dolj + locality: Craiova + lat: 44.307047 + lng: 23.81166 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 122 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:52.286000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1199 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 12 + county: Dolj + locality: Craiova + lat: 44.306837 + lng: 23.8113577 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 123 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:52.454000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1200 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 10 + county: Dolj + locality: Craiova + lat: 44.3066785 + lng: 23.8111305 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 124 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:52.569000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1201 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. G. Vaslan nr. 3A + county: Dolj + locality: Craiova + lat: 44.306456 + lng: 23.8110215 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 126 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:15:52.733000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1202 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. G. Vaslan nr. 3A + county: Dolj + locality: Craiova + lat: 44.3063712 + lng: 23.81123983 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 127B - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:09.912000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1203 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 4 + county: Dolj + locality: Craiova + lat: 44.306003 + lng: 23.8111277 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 128 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.095000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1204 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. G. Vaslan nr. 3A + county: Dolj + locality: Craiova + lat: 44.306456 + lng: 23.8110215 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 127A - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.246000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1205 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Rovinari nr. 6A + county: Dolj + locality: Craiova + lat: 44.3081706 + lng: 23.8129747 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 106 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.395000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1206 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 26 + county: Dolj + locality: Craiova + lat: 44.3079356 + lng: 23.8129061 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 116 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.542000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1207 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 24 + county: Dolj + locality: Craiova + lat: 44.30783 + lng: 23.8126966 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 117 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.681000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1208 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 22 + county: Dolj + locality: Craiova + lat: 44.3076321 + lng: 23.8125517 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 118 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.803000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1209 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gral. Magheru nr. 20 + county: Dolj + locality: Craiova + lat: 44.3075191 + lng: 23.8123157 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: ing. Cosma Radu + observations: bloc 119 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:10.945000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1210 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mircesti nr. 14 + county: Dolj + locality: Craiova + lat: 44.3118836 + lng: 23.8225246 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O4 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.090000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1211 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mircesti nr. 12 + county: Dolj + locality: Craiova + lat: 44.3118951 + lng: 23.8222147 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O5 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.202000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1212 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mircesti nr. 4 + county: Dolj + locality: Craiova + lat: 44.3119964 + lng: 23.8205719 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O18 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.322000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1213 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mircesti nr. 2 + county: Dolj + locality: Craiova + lat: 44.3120088 + lng: 23.8204808 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O19 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.466000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1214 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania nr. 14 + county: Dolj + locality: Craiova + lat: 44.3120087 + lng: 23.8202168 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O20 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.607000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1215 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania nr. 12 + county: Dolj + locality: Craiova + lat: 44.3117351 + lng: 23.820446 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O21 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.735000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1216 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania nr. 10 + county: Dolj + locality: Craiova + lat: 44.3115661 + lng: 23.8201804 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O22 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.849000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1217 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania nr. 8 + county: Dolj + locality: Craiova + lat: 44.3113646 + lng: 23.8201479 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O23 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:11.970000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1218 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania nr. 6 + county: Dolj + locality: Craiova + lat: 44.3111844 + lng: 23.8201051 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc O24 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.138000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1219 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Dr. Ion Cernătescu + county: Dolj + locality: Craiova + lat: 44.3285435 + lng: 23.8092358 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 79 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.242000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1220 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Lămâiței, nr. 8 + county: Dolj + locality: Craiova + lat: 44.3280014 + lng: 23.8066418 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 68B - în curs de reabilitare termică + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.371000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1221 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Eustațiu Stoenescu, nr. 1D + county: Dolj + locality: Craiova + lat: 44.3147158 + lng: 23.8352159 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc N13 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.494000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1222 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Eustațiu Stoenescu, nr. 1B + county: Dolj + locality: Craiova + lat: 44.3142786 + lng: 23.8361759 + risk_category: RS3 + height_regime: S+P+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc T9 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.631000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1223 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Brâncoveanu, nr. 65 + county: Dolj + locality: Craiova + lat: 44.3336262 + lng: 23.782937 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 42 A1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.765000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1224 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Nanterre, nr. 71 + county: Dolj + locality: Craiova + lat: 44.314919 + lng: 23.8183964 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 15 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:12.886000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1225 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Nanterre, nr. 37 + county: Dolj + locality: Craiova + lat: 44.3154559 + lng: 23.8161352 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 16 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.023000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1226 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Basarabia, nr.9 + county: Dolj + locality: Craiova + lat: 44.3269112 + lng: 23.8159 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc E2 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.166000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1227 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Brazda lui Novac, nr. 64A + county: Dolj + locality: Craiova + lat: 44.3293585 + lng: 23.8040221 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc C5 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.279000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1228 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihail Cerchez nr.4 + county: Dolj + locality: Craiova + lat: 44.329103 + lng: 23.8043205 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc C6 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.407000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1229 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. 1 Mai, nr. 5 + county: Dolj + locality: Craiova + lat: 44.3114268 + lng: 23.7912274 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc M20 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1990 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.521000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1230 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. George Fotino, nr. 1 + county: Dolj + locality: Craiova + lat: 44.3188612 + lng: 23.8163486 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bl. B8 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.657000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1231 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Popa Sapca nr.14 + county: Dolj + locality: Craiova + lat: 44.3190406 + lng: 23.7929112 + risk_category: RS3 + height_regime: S+P+4E+5R + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 14 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.797000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1232 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Unirii, nr. 21 + county: Dolj + locality: Craiova + lat: 44.3169429 + lng: 23.7953444 + risk_category: RS3 + height_regime: S+P+M+3E+4R + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 21A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:13.939000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1233 + fields: + parent_id: null + status: 1 + street_number: '' + address: aleea Arh. Duiliu Marcu, nr. 14 + county: Dolj + locality: Craiova + lat: 44.338222 + lng: 23.7811914 + risk_category: RS3 + height_regime: S+P+10E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 10, sc. 1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.063000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1234 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihai Viteazu nr.2 + county: Dolj + locality: Craiova + lat: 44.3193555 + lng: 23.7942362 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.200000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1235 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihai Viteazu nr.4 + county: Dolj + locality: Craiova + lat: 44.3193779 + lng: 23.7937905 + risk_category: RS3 + height_regime: S+P+4E+Eth+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 2A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.323000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1236 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Mihail Strajan, nr. 9 + county: Dolj + locality: Craiova + lat: 44.319111 + lng: 23.8221282 + risk_category: RS3 + height_regime: S+P+4E+Pod-tr1/S+P+4E+tr2-7 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc a7 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.449000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1237 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Constantin Argetoianu nr. 21 + county: Dolj + locality: Craiova + lat: 44.3280971 + lng: 23.8098905 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc K36 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.587000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1238 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Elena Farago, nr. 34 + county: Dolj + locality: Craiova + lat: 44.3392147 + lng: 23.7707322 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 173E - in curs de reabilitare termica + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.742000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1239 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul, Dacia, nr. 10 + county: Dolj + locality: Craiova + lat: 44.3395987 + lng: 23.7700259 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 174C, sc.1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:14.897000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1240 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Bibescu, nr. 82 + county: Dolj + locality: Craiova + lat: 44.3119469 + lng: 23.7868877 + risk_category: RS3 + height_regime: S+P+10E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc A12, sc. 1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.036000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1241 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. A. I. Cuza, nr. 46 + county: Dolj + locality: Craiova + lat: 44.3172555 + lng: 23.8099551 + risk_category: RS3 + height_regime: S+P+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 10 A, sc. 1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1991 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.161000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1242 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul, Dacia, nr. 134 + county: Dolj + locality: Craiova + lat: 44.3283451 + lng: 23.8136924 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc K1, sc. 1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.299000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1243 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Petre Ispirescu, nr. 30 + county: Dolj + locality: Craiova + lat: 44.3181791 + lng: 23.8211592 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 10, sc. 1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.405000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1244 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Petre Ispirescu, nr. 34 + county: Dolj + locality: Craiova + lat: 44.3177551 + lng: 23.8210175 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc 12, sc. 1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.535000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1245 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Eustațiu Stoenescu, nr. 23 + county: Dolj + locality: Craiova + lat: 44.3143602 + lng: 23.8400504 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc F18, sc. 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.672000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1246 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Dr. Mihai Canciulescu, nr. 15 + county: Dolj + locality: Craiova + lat: 44.2984886 + lng: 23.7961478 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc I101, sc. A+B - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.824000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1247 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Ștefan Berceanu, nr. 11 + county: Dolj + locality: Craiova + lat: 44.2984398 + lng: 23.7950877 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc I14, sc. 1 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:15.947000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1248 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Spania, nr. 42 + county: Dolj + locality: Craiova + lat: 44.3155296 + lng: 23.82098 + risk_category: RS3 + height_regime: S+P+9E+10R+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc P1, sc. 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.096000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1249 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Lalelelor nr.2 + county: Dolj + locality: Craiova + lat: 44.3118344 + lng: 23.7894639 + risk_category: RS3 + height_regime: S+P+7E+Eth+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Popescu Dumitru Dan + observations: bloc D5, sc. 1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1987 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.211000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1250 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. Ilie Balaci, nr. 3 + county: Dolj + locality: Craiova + lat: 44.3127135 + lng: 23.7881816 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc D4 A1 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.328000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1251 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. Nicolae Titulescu, nr. 29 + county: Dolj + locality: Craiova + lat: 44.3253406 + lng: 23.7879533 + risk_category: RS3 + height_regime: S+P+10E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc I4 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.425000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1252 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. 1 Mai, nr. 57 + county: Dolj + locality: Craiova + lat: 44.3049123 + lng: 23.7958337 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc 17 a - in curs de reabilitare termica + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.557000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1253 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. Ilie Balaci, nr. 5 + county: Dolj + locality: Craiova + lat: 44.3127135 + lng: 23.7881816 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc D3A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.671000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1254 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. Ilie Balaci, nr. 7 + county: Dolj + locality: Craiova + lat: 44.312061 + lng: 23.7883515 + risk_category: RS3 + height_regime: S+P+M+8E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc D2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.764000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1255 + fields: + parent_id: null + status: 1 + street_number: '' + address: B-dul. 1 Mai, nr. 2 + county: Dolj + locality: Craiova + lat: 44.3120363 + lng: 23.7893221 + risk_category: RS3 + height_regime: S+P+M+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc D4A, sc. 2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.863000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1256 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 141 + county: Dolj + locality: Craiova + lat: 44.313794 + lng: 23.837356 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc N17 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:16.963000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1257 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 12 + county: Dolj + locality: Craiova + lat: 44.3190076 + lng: 23.8032201 + risk_category: RS3 + height_regime: S+P+7E+E8R + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc M8A - in curs de reabilitare termica + has_warning_panels: null + year_built: 1989 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.097000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1258 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 135 + county: Dolj + locality: Craiova + lat: 44.3144744 + lng: 23.8315135 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc N5c - în curs de reabilitare termică + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.218000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1259 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 147 + county: Dolj + locality: Craiova + lat: 44.3137021 + lng: 23.8382368 + risk_category: RS3 + height_regime: S+P+7E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc T10 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.340000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1260 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 163 + county: Dolj + locality: Craiova + lat: 44.3136642 + lng: 23.8409004 + risk_category: RS3 + height_regime: D+P+6E+E7R+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc T14 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.451000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1261 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 8 + county: Dolj + locality: Craiova + lat: 44.3129461 + lng: 23.8368745 + risk_category: RS3 + height_regime: S+P+9E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc E7 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1988 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.579000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1262 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 135 + county: Dolj + locality: Craiova + lat: 44.3144744 + lng: 23.8315135 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc N5a - în curs de reabilitare termică + has_warning_panels: null + year_built: 1985 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.722000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1263 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 139 + county: Dolj + locality: Craiova + lat: 44.313814 + lng: 23.83701 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc N16, sc. 1-2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:17.870000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1264 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 143 + county: Dolj + locality: Craiova + lat: 44.3140036 + lng: 23.8374947 + risk_category: RS3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc N18 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.001000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1265 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 155 + county: Dolj + locality: Craiova + lat: 44.313665 + lng: 23.839711 + risk_category: RS3 + height_regime: D+P+6E+7R+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc T12 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.148000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1266 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Bucuresti nr. 1665 + county: Dolj + locality: Craiova + lat: 44.3128756 + lng: 23.8518788 + risk_category: RS3 + height_regime: D+P+6E+7Parțial+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc T15 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.272000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1267 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Unirii, nr. 11 + county: Dolj + locality: Craiova + lat: 44.319732 + lng: 23.7946775 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc nr.2 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.398000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1268 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Calea Unirii, nr. 11 + county: Dolj + locality: Craiova + lat: 44.3198352 + lng: 23.79503879 + risk_category: RS3 + height_regime: S+P+4E+Eth + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc nr. 3 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1983 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.497000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1269 + fields: + parent_id: null + status: 1 + street_number: '' + address: str. Gen. Ioan Cernătescu, nr. 4 + county: Dolj + locality: Craiova + lat: 44.3274642 + lng: 23.8098587 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Apostol Zefir Ioan George + observations: bloc A13 - in curs de reabilitare termica + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.619000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1270 + fields: + parent_id: null + status: 1 + street_number: '' + address: str George Fotino, nr. 8 + county: Dolj + locality: Craiova + lat: 44.31902958 + lng: 23.81690003 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2022 + certified_expert: ing. Constantin Pavel + observations: bloc 12, sc. 1,2,3 - în curs de reabilitare termică + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-10 21:16:18.748000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1271 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Aleea ALEXANDRU + county: București + locality: Sector 1 + lat: 44.458903 + lng: 26.086823 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 331.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.007835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1272 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc P4; 37) + address: Aleea AVRIG (colț cu Șoseaua MIHAI BRAVU) + county: București + locality: Sector 2 + lat: 44.44612303 + lng: 26.12736879 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 4378.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.152078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1273 + fields: + parent_id: null + status: 1 + street_number: 10 (bloc P5) + address: Aleea AVRIG + county: București + locality: Sector 2 + lat: 44.445453 + lng: 26.129076 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.275559+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1274 + fields: + parent_id: null + status: 1 + street_number: 14 (bloc P6) + address: Aleea AVRIG + county: București + locality: Sector 2 + lat: 44.444958 + lng: 26.129523 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.396278+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1275 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc M35) + address: Aleea BARAJUL DUNARII + county: București + locality: Sector 3 + lat: 44.4261707 + lng: 26.1699257 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 27956.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.549204+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1276 + fields: + parent_id: null + status: 1 + street_number: 3÷5 (bloc N12-13) + address: Aleea BARAJUL SADULUI + county: București + locality: Sector 3 + lat: 44.4269612 + lng: 26.1675711 + risk_category: U3 + height_regime: S+P+13E+1Etehnic + is_still_present: true + consolidation_status: 'NO' + apartment_count: 166 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gavril POP + observations: Încadrare în clasă de risc seismic RsIII spre RsII în anul 2013 + (documentaţie tehnico economică elaborată pentru creşterea eficienţei energetice + a construcţiei) + has_warning_panels: null + year_built: 1975 + surface: 15848.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.678363+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1277 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Aleea CIRCULUI + county: București + locality: Sector 2 + lat: 44.456599 + lng: 26.109511 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2265.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.790401+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1278 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc G12) + address: Aleea COMPOZITORILOR + county: București + locality: Sector 6 + lat: 44.420038 + lng: 26.045356 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:43:59.887346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1279 + fields: + parent_id: null + status: 1 + street_number: 30 (bloc OD15) + address: Aleea COMPOZITORILOR + county: București + locality: Sector 6 + lat: 44.419075 + lng: 26.041788 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1477.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.012848+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1280 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc G9) + address: Aleea COMPOZITORILOR + county: București + locality: Sector 6 + lat: 44.419994 + lng: 26.046239 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 3157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.133937+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1281 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Aleea DEALUL MITROPOLIEI + county: București + locality: Sector 4 + lat: 44.4251498 + lng: 26.0996698 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 14.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.277327+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1282 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Aleea DEALUL MITROPOLIEI + county: București + locality: Sector 4 + lat: 44.4247839 + lng: 26.0985926 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 456.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.394466+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1283 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Aleea DEALUL MITROPOLIEI + county: București + locality: Sector 4 + lat: 44.424856 + lng: 26.0985338 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 880.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.494607+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1284 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Aleea DEALUL MITROPOLIEI + county: București + locality: Sector 4 + lat: 44.42539 + lng: 26.100241 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 840.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.616278+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1285 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Aleea DEALUL MITROPOLIEI + county: București + locality: Sector 4 + lat: 44.4255256 + lng: 26.1001316 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 1347.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.740044+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1286 + fields: + parent_id: null + status: 1 + street_number: 2÷4 (bloc R11) + address: Aleea DRAGOS MLADINOVICI + county: București + locality: Sector 4 + lat: 44.383752 + lng: 26.116175 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 164 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.848868+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1287 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc R16) + address: Aleea DRAGOS MLADINOVICI + county: București + locality: Sector 4 + lat: 44.383614 + lng: 26.118154 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 692.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:00.923083+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1288 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc R17) + address: Aleea DRAGOS MLADINOVICI + county: București + locality: Sector 4 + lat: 44.383424 + lng: 26.117789 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 65.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.022127+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1289 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Aleea LUNGULEŢU + county: București + locality: Sector 2 + lat: 44.440254 + lng: 26.132664 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3071.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.133285+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1290 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Aleea MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.4330217 + lng: 26.1121073 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.249043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1291 + fields: + parent_id: null + status: 1 + street_number: 14 (tronson I) + address: Aleea MODROGAN (MINISTERUL AFACERILOR EXTERNE) + county: București + locality: Sector 1 + lat: 44.45815737 + lng: 26.08796159 + risk_category: U1 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 324.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.376876+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1292 + fields: + parent_id: null + status: 1 + street_number: 14 (tronson II+III) + address: Aleea MODROGAN (MINISTERUL AFACERILOR EXTERNE) + county: București + locality: Sector 1 + lat: 44.4574936 + lng: 26.0894608 + risk_category: U2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1952 + surface: 648.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.516007+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1293 + fields: + parent_id: null + status: 1 + street_number: 1÷7 (bloc OD52+OD54) + address: Aleea OTEŞANI + county: București + locality: Sector 2 + lat: 44.457669 + lng: 26.127534 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 13694.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.616052+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1294 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Aleea PANTELIMON + county: București + locality: Sector 3 + lat: 44.442419 + lng: 26.181891 + risk_category: N/A + height_regime: P+4 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.733629+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1295 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc OD3) + address: Aleea POIANA MUNTELUI + county: București + locality: Sector 6 + lat: 44.4243126 + lng: 26.0304251 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 224 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 1755.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.871821+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1296 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc Z6) + address: Aleea PRAVĂŢ + county: București + locality: Sector 6 + lat: 44.425095 + lng: 26.040907 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 5198.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:01.972974+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1297 + fields: + parent_id: null + status: 1 + street_number: 12 (bloc 20) + address: Aleea PRICOPAN + county: București + locality: Sector 5 + lat: 44.406281 + lng: 26.070644 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.078187+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1298 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc 12) + address: Aleea PRICOPAN + county: București + locality: Sector 5 + lat: 44.40592 + lng: 26.070095 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.182298+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1299 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc 16) + address: Aleea PRICOPAN + county: București + locality: Sector 5 + lat: 44.40564 + lng: 26.0718951 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.301539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1300 + fields: + parent_id: null + status: 1 + street_number: 6A (bloc 18) + address: Aleea PRICOPAN + county: București + locality: Sector 5 + lat: 44.405384 + lng: 26.072003 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.414283+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1301 + fields: + parent_id: null + status: 1 + street_number: 8 (bloc 19) + address: Aleea PRICOPAN + county: București + locality: Sector 5 + lat: 44.406093 + lng: 26.070371 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 2244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.555679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1302 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc 7) + address: Aleea RAUL SADULUI + county: București + locality: Sector 4 + lat: 44.381092 + lng: 26.123294 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.670212+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1303 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc 31) + address: Aleea SECUILOR + county: București + locality: Sector 4 + lat: 44.390926 + lng: 26.11732 + risk_category: N/A + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 107 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 6557.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.811335+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1304 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Aleea SILISTEA + county: București + locality: Sector 2 + lat: 44.452064 + lng: 26.14716 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:02.931536+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1305 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc 7) + address: Aleea SILISTEA + county: București + locality: Sector 2 + lat: 44.452567 + lng: 26.146421 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.010845+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1306 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Aleea SINAIA + county: București + locality: Sector 2 + lat: 44.463408 + lng: 26.13616 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.107413+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1307 + fields: + parent_id: null + status: 1 + street_number: 10 (bloc 74) + address: Aleea SINAIA + county: București + locality: Sector 2 + lat: 44.4633029 + lng: 26.1349692 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.195702+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1308 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Aleea SINAIA + county: București + locality: Sector 2 + lat: 44.46297 + lng: 26.134471 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.300502+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1309 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Aleea SINAIA + county: București + locality: Sector 2 + lat: 44.463044 + lng: 26.134928 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.427706+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1310 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4183531 + lng: 26.0927741 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.561258+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1311 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4184049 + lng: 26.0929607 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.708226+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1312 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4184589 + lng: 26.0928095 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:03.866418+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1313 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A+B) + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4190475 + lng: 26.0931295 + risk_category: RS2 + height_regime: S+P+1E+Ma;S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.022386+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1314 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4186367 + lng: 26.0930218 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.163762+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1315 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4176095 + lng: 26.0924766 + risk_category: RS3 + height_regime: P+1+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.269675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1316 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4178246 + lng: 26.0927192 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.377387+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1317 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Aleea SUTER + county: București + locality: Sector 4 + lat: 44.4179277 + lng: 26.0926049 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.499596+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1318 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 20) + address: Aleea VERGULUI + county: București + locality: Sector 2 + lat: 44.439733 + lng: 26.179252 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.633887+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1319 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 21) + address: Aleea VERGULUI + county: București + locality: Sector 2 + lat: 44.440155 + lng: 26.179523 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.778256+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1320 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc 15) + address: Aleea VERGULUI + county: București + locality: Sector 2 + lat: 44.440035 + lng: 26.181291 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:04.930412+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1321 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 19) + address: Aleea VERGULUI + county: București + locality: Sector 2 + lat: 44.440011 + lng: 26.180018 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.085214+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1322 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc 18) + address: Aleea VERGULUI + county: București + locality: Sector 2 + lat: 44.439993 + lng: 26.180551 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.206156+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1323 + fields: + parent_id: null + status: 1 + street_number: 26÷28 + address: Bulevardul ALEXANDRU AVERESCU + county: București + locality: Sector 1 + lat: 44.463797 + lng: 26.074674 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1293.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.328383+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1324 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.449105 + lng: 26.081836 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 62 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 349.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.421439+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1325 + fields: + parent_id: null + status: 1 + street_number: '105' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.451921 + lng: 26.072289 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 620.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.559364+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1326 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.449432 + lng: 26.08036 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ecaterina BALL + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 170.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.675105+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1327 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.449884 + lng: 26.078601 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 158.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.770725+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1328 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.449432 + lng: 26.08036 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 254.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.847054+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1329 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.450314 + lng: 26.077453 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:05.957630+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1330 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.451114 + lng: 26.075044 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 850.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.080408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1331 + fields: + parent_id: null + status: 1 + street_number: '89' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.451339 + lng: 26.074247 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 738.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.181003+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1332 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.448949 + lng: 26.081725 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 915.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.314460+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1333 + fields: + parent_id: null + status: 1 + street_number: '97' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.451567 + lng: 26.073522 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 198.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.421422+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1334 + fields: + parent_id: null + status: 1 + street_number: '99' + address: Bulevardul ALEXANDRU IOAN CUZA + county: București + locality: Sector 1 + lat: 44.449432 + lng: 26.08036 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ecaterina BALL + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1223.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.526651+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1335 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.3884128 + lng: 26.1181312 + risk_category: U3 + height_regime: S+P+15E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 84 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dan CAPATINA + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1979 + surface: 10833.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.623540+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1336 + fields: + parent_id: null + status: 1 + street_number: 2 (corp B) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.3883313 + lng: 26.1179443 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 7164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.720739+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1337 + fields: + parent_id: null + status: 1 + street_number: 27 (bloc A18) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.381452 + lng: 26.115797 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 354.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.834150+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1338 + fields: + parent_id: null + status: 1 + street_number: 30 (bloc R4) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.3805 + lng: 26.115932 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 89 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:06.967372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1339 + fields: + parent_id: null + status: 1 + street_number: 32 (bloc R5) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.380044 + lng: 26.116015 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.107209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1340 + fields: + parent_id: null + status: 1 + street_number: 33 (bloc O3) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.3805554 + lng: 26.1175442 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Corneliu MUDRACENCO + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.230650+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1341 + fields: + parent_id: null + status: 1 + street_number: 34 (bloc R6) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.379583 + lng: 26.116085 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.396623+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1342 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc OD1) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.387583 + lng: 26.116849 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 220 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 20582.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.506127+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1343 + fields: + parent_id: null + status: 1 + street_number: 40 (bloc R8) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.37874 + lng: 26.117238 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.608685+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1344 + fields: + parent_id: null + status: 1 + street_number: 5÷7 (bloc R14) + address: Bulevardul ALEXANDRU OBREGIA + county: București + locality: Sector 4 + lat: 44.387414 + lng: 26.118174 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 5157.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.710530+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1345 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Bulevardul AVIATORILOR + county: București + locality: Sector 1 + lat: 44.458284 + lng: 26.086525 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 895.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.828465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1346 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Bulevardul AVIATORILOR + county: București + locality: Sector 1 + lat: 44.460168 + lng: 26.085626 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 162.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:07.935683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1347 + fields: + parent_id: null + status: 1 + street_number: 65 (corp A) + address: Bulevardul AVIATORILOR + county: București + locality: Sector 1 + lat: 44.4646674 + lng: 26.0857799 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Radu AGENT + observations: AC nr.635/1095408/2012 PVRTL nr.1227603/2014 + has_warning_panels: null + year_built: 1933 + surface: 149.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.051918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1348 + fields: + parent_id: null + status: 1 + street_number: 65 (corp B) + address: Bulevardul AVIATORILOR + county: București + locality: Sector 1 + lat: 44.4646674 + lng: 26.0857799 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 98.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.166555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1349 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul BANU MANTA + county: București + locality: Sector 1 + lat: 44.452611 + lng: 26.074346 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 111.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.341558+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1350 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Bulevardul BANUL MANTA + county: București + locality: Sector 1 + lat: 44.455633 + lng: 26.078871 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1628.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.514377+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1351 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Bulevardul BANUL MANTA + county: București + locality: Sector 1 + lat: 44.455123 + lng: 26.076958 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ROSCA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 435.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.652031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1352 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A) + address: Bulevardul BANUL MANTA + county: București + locality: Sector 1 + lat: 44.455839 + lng: 26.079552 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ROSCA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 580.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.751611+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1353 + fields: + parent_id: null + status: 1 + street_number: 30 (corp B) + address: Bulevardul BANUL MANTA + county: București + locality: Sector 1 + lat: 44.4542534 + lng: 26.0758409 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ROSCA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.867717+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1354 + fields: + parent_id: null + status: 1 + street_number: 28 (bloc 31) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.431883 + lng: 26.142805 + risk_category: U2 + height_regime: S+P+11E ÷ 12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 100 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1963 + surface: 7308.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:08.997129+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1355 + fields: + parent_id: null + status: 1 + street_number: 42 (bloc 32) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.432579 + lng: 26.144034 + risk_category: RS3 + height_regime: S+P+11…12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 7308.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.166892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1356 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.43229 + lng: 26.140768 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.311048+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1357 + fields: + parent_id: null + status: 1 + street_number: 52 (bloc 33) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.432046 + lng: 26.14466 + risk_category: RS3 + height_regime: S+P+11…12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 7308.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.457106+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1358 + fields: + parent_id: null + status: 1 + street_number: 62 (bloc 34) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.432744 + lng: 26.1460139 + risk_category: RS3 + height_regime: S+P+11…12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.637777+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1359 + fields: + parent_id: null + status: 1 + street_number: 62A + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.4325228 + lng: 26.1458622 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 240 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 1944.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.779864+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1360 + fields: + parent_id: null + status: 1 + street_number: 68 (bloc 35) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.432232 + lng: 26.146743 + risk_category: RS3 + height_regime: S+P+11…12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8229.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:09.911264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1361 + fields: + parent_id: null + status: 1 + street_number: 78 (bloc 36) + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.432319 + lng: 26.147729 + risk_category: RS3 + height_regime: S+P+12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 102 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 7969.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.045889+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1362 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul BASARABIA + county: București + locality: Sector 2 + lat: 44.43236 + lng: 26.141226 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 532.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.191487+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1363 + fields: + parent_id: null + status: 1 + street_number: 54 (113) + address: Bulevardul CAROL I (colț cu Calea MOȘILOR) + county: București + locality: Sector 2 + lat: 44.4368605 + lng: 26.1096884 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.316841+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1364 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Bulevardul CAROL I + county: București + locality: Sector 3 + lat: 44.43582 + lng: 26.104108 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu MUDRACENCU + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.431599+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1365 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.43597409 + lng: 26.1056554 + risk_category: U2 + height_regime: S+Mz+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Cătălin ȘTEFAN + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 988.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.580306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1366 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.4359998 + lng: 26.1044367 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: null + certified_expert: '' + observations: AC nr.977/112C/2004; PVRTL nr.3632/142078/2006 + has_warning_panels: null + year_built: null + surface: 4649.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.727693+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1367 + fields: + parent_id: null + status: 1 + street_number: 23 (corp A+B) + address: Bulevardul CAROL I + county: București + locality: Sector 3 + lat: 44.436204 + lng: 26.10574 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.850854+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1368 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436492 + lng: 26.107324 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:10.974120+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1369 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436597 + lng: 26.107895 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 755.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.119976+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1370 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436004 + lng: 26.105052 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2017 + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.288379+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1371 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436822 + lng: 26.109113 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1961 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.427449+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1372 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436864 + lng: 26.109338 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.637594+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1373 + fields: + parent_id: null + status: 1 + street_number: 40÷42 (sc. A+B+C+D) + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.43665 + lng: 26.108694 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Octavian MĂNOIU + observations: Sentința civilă nr.1677/2017 (Judecătoria Sectorului 2); Decizia + definitivă nr.2947A/2017 (Tribunalul BucureȘti - Secția a V-a Civilă) + has_warning_panels: null + year_built: 1890 + surface: 693.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.797336+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1374 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437249 + lng: 26.111484 + risk_category: U1 + height_regime: P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 23 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculae TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 2784.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:11.934816+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1375 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.43705205 + lng: 26.11136787 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 618.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.044516+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1376 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.436946 + lng: 26.110339 + risk_category: RS3 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 2166.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.168703+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1377 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.43731 + lng: 26.111804 + risk_category: U1 + height_regime: S+Ds+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 5105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.311058+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1378 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437805 + lng: 26.112982 + risk_category: RS3 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 2662.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.428049+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1379 + fields: + parent_id: null + status: 1 + street_number: '58' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.4373217 + lng: 26.1127671 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 226.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.563968+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1380 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437571 + lng: 26.113182 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 2592.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.719158+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1381 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Bulevardul CAROL I + county: București + locality: Sector 3 + lat: 44.435818 + lng: 26.104097 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu MUDRACENCU + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 960.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:12.881083+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1382 + fields: + parent_id: null + status: 1 + street_number: '63' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437713 + lng: 26.113866 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculae TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1769.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.052106+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1383 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437354 + lng: 26.112526 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1918 + surface: 60.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.149573+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1384 + fields: + parent_id: null + status: 1 + street_number: 68÷70 + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.437613 + lng: 26.114935 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.278738+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1385 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Bulevardul CAROL I + county: București + locality: Sector 2 + lat: 44.43776 + lng: 26.114536 + risk_category: U1 + height_regime: P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 323.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.400315+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1386 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul CAROL I + county: București + locality: Sector 3 + lat: 44.435819 + lng: 26.104102 + risk_category: RS1 + height_regime: S+P+2ES+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.532939+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1387 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Bulevardul CONSTRUCTORILOR + county: București + locality: Sector 6 + lat: 44.457904 + lng: 26.041213 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2965.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.705675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1388 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Bulevardul CONSTRUCTORILOR + county: București + locality: Sector 6 + lat: 44.457813 + lng: 26.04132 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 4475.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:13.943636+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1389 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc C13) + address: Bulevardul CONSTRUCTORILOR + county: București + locality: Sector 6 + lat: 44.458127 + lng: 26.041003 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2965.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.103488+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1390 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A) + address: Bulevardul CORNELIU COPOSU + county: București + locality: Sector 3 + lat: 44.42951534 + lng: 26.10514036 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1928 + surface: 2401.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.215101+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1391 + fields: + parent_id: null + status: 1 + street_number: 1 (corp B) + address: Bulevardul CORNELIU COPOSU + county: București + locality: Sector 3 + lat: 44.4292244 + lng: 26.1043481 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.325520+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1392 + fields: + parent_id: null + status: 1 + street_number: 1 (corp C) + address: Bulevardul CORNELIU COPOSU + county: București + locality: Sector 3 + lat: 44.42962434 + lng: 26.10541354 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1928 + surface: 2401.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.416901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1393 + fields: + parent_id: null + status: 1 + street_number: 28 (8) + address: Bulevardul DACIA (colț cu Strada MIHAI EMINESCU) + county: București + locality: Sector 1 + lat: 44.44645928 + lng: 26.09802863 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.495600+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1394 + fields: + parent_id: null + status: 1 + street_number: 37 (1) + address: Bulevardul DACIA (colț cu Strada STANISLAV CIHOVSCHI) + county: București + locality: Sector 1 + lat: 44.446969 + lng: 26.09773 + risk_category: U1 + height_regime: S-P-2E-Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Niculae TEODOR + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1930 + surface: 1896.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.609692+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1395 + fields: + parent_id: null + status: 1 + street_number: 101 (fost 47) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44612 + lng: 26.108334 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 921.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.721126+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1396 + fields: + parent_id: null + status: 1 + street_number: '102' + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445519 + lng: 26.110972 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2261.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.845879+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1397 + fields: + parent_id: null + status: 1 + street_number: 103 (fost 75A) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44610976 + lng: 26.1086611 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:14.986165+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1398 + fields: + parent_id: null + status: 1 + street_number: 103 (nr. vechi) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44608162 + lng: 26.10880987 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.114364+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1399 + fields: + parent_id: null + status: 1 + street_number: 104 (fost 74) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445457 + lng: 26.111324 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.257400+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1400 + fields: + parent_id: null + status: 1 + street_number: '109' + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445895 + lng: 26.109612 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 483.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.377158+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1401 + fields: + parent_id: null + status: 1 + street_number: 114 (fost 84) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445961 + lng: 26.10874 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.480907+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1402 + fields: + parent_id: null + status: 1 + street_number: 116 (fost 86) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.444943 + lng: 26.114353 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.620515+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1403 + fields: + parent_id: null + status: 1 + street_number: 125 (fost 71) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.446536 + lng: 26.103596 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.768418+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1404 + fields: + parent_id: null + status: 1 + street_number: 131 (fost 101) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44612 + lng: 26.108334 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Theodor MARIN + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.868356+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1405 + fields: + parent_id: null + status: 1 + street_number: 149 (fost 119) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445203 + lng: 26.113368 + risk_category: RS2 + height_regime: S+P+2E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:15.963207+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1406 + fields: + parent_id: null + status: 1 + street_number: 153 (fost 123) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445027 + lng: 26.114397 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1888 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.086792+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1407 + fields: + parent_id: null + status: 1 + street_number: 159 (fost 129, corp A+B) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.4442099 + lng: 26.1175955 + risk_category: RS1 + height_regime: S+P; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.214229+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1408 + fields: + parent_id: null + status: 1 + street_number: 160 (fost 130, corp A+B) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.4512038 + lng: 26.13389 + risk_category: RS1 + height_regime: S+P; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.340158+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1409 + fields: + parent_id: null + status: 1 + street_number: 168 (fost 138) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.444094 + lng: 26.117418 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.459161+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1410 + fields: + parent_id: null + status: 1 + street_number: 171 (fost 141) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44458 + lng: 26.11566 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 741.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.546239+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1411 + fields: + parent_id: null + status: 1 + street_number: 172 (fost 142) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.443938 + lng: 26.11812 + risk_category: RS3 + height_regime: S+P+1E;S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.650975+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1412 + fields: + parent_id: null + status: 1 + street_number: 173 (fost 143) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.444522 + lng: 26.11583 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 880.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.780676+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1413 + fields: + parent_id: null + status: 1 + street_number: 178 (fost 148) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.4438169 + lng: 26.1185359 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 585.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:16.915804+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1414 + fields: + parent_id: null + status: 1 + street_number: 32 (fost 2) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446876 + lng: 26.099513 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 6394.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.040835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1415 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446938 + lng: 26.09619 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.146668+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1416 + fields: + parent_id: null + status: 1 + street_number: 37 (fost 11) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446969 + lng: 26.09773 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 987.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.265410+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1417 + fields: + parent_id: null + status: 1 + street_number: 43 (fost 1) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446912 + lng: 26.099552 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.370043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1418 + fields: + parent_id: null + status: 1 + street_number: 45 (fost 1A) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446906 + lng: 26.099823 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 2996.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.493286+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1419 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446872 + lng: 26.100109 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2000 + has_warning_panels: null + year_built: 1936 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.589800+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1420 + fields: + parent_id: null + status: 1 + street_number: 49 (fost 5) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446842 + lng: 26.100392 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ion GANESCU + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 1338.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.682512+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1421 + fields: + parent_id: null + status: 1 + street_number: 51 (fost 7) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.4468295 + lng: 26.10096 + risk_category: U3 + height_regime: Ds+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1378.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.794378+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1422 + fields: + parent_id: null + status: 1 + street_number: 53 (fost 9) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.44597 + lng: 26.092208 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1435.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:17.906915+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1423 + fields: + parent_id: null + status: 1 + street_number: 64 (fost 38) + address: Bulevardul DACIA + county: București + locality: Sector 1 + lat: 44.446642 + lng: 26.101424 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 628.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.047576+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1424 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.446189 + lng: 26.107158 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.205397+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1425 + fields: + parent_id: null + status: 1 + street_number: 80 (fost 52A) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.446032 + lng: 26.108306 + risk_category: RS2 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.372929+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1426 + fields: + parent_id: null + status: 1 + street_number: '85' + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.4464058 + lng: 26.1063494 + risk_category: C + height_regime: S+P+5E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Adina SIMION + observations: AC nr.530/2011 PVRTL nr.2178/2016 + has_warning_panels: null + year_built: 1935 + surface: 1945.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.533797+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1427 + fields: + parent_id: null + status: 1 + street_number: 88 (corp A) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.44575797 + lng: 26.1091899 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 4224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.637299+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1428 + fields: + parent_id: null + status: 1 + street_number: 88 (corp B) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.4458093 + lng: 26.1091728 + risk_category: U3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 4224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.755157+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1429 + fields: + parent_id: null + status: 1 + street_number: 98 (fost 68) + address: Bulevardul DACIA + county: București + locality: Sector 2 + lat: 44.445622 + lng: 26.110397 + risk_category: N/A + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:18.898769+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1430 + fields: + parent_id: null + status: 1 + street_number: 13A + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.420458 + lng: 26.104517 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 900.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.069739+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1431 + fields: + parent_id: null + status: 1 + street_number: 15 (bloc 9) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.4206644 + lng: 26.1051244 + risk_category: U2 + height_regime: S+P+8…9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 226 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Dragoş BADEA + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1964 + surface: 1638.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.231078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1432 + fields: + parent_id: null + status: 1 + street_number: 15A + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.420095 + lng: 26.10432 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 648.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.400989+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1433 + fields: + parent_id: null + status: 1 + street_number: 25 (bloc 2) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.416465 + lng: 26.104743 + risk_category: N/A + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1961 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.570500+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1434 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 4) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.424179 + lng: 26.104913 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 6765.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.714503+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1435 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc 3C) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.424154 + lng: 26.104931 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 4887.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.815167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1436 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 6) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.423607 + lng: 26.104905 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 6765.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:19.932266+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1437 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.422719 + lng: 26.103658 + risk_category: N/A + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.053372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1438 + fields: + parent_id: null + status: 1 + street_number: 9 (bloc 7) + address: Bulevardul DIMITRIE CANTEMIR + county: București + locality: Sector 4 + lat: 44.422487 + lng: 26.1049 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 6765.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.184772+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1439 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Bulevardul DINICU GOLESCU + county: București + locality: Sector 1 + lat: 44.441037 + lng: 26.080601 + risk_category: RS2 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 752.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.340370+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1440 + fields: + parent_id: null + status: 1 + street_number: 23÷25 (bloc B, corp A+B) + address: Bulevardul DINICU GOLESCU + county: București + locality: Sector 1 + lat: 44.444175 + lng: 26.075776 + risk_category: U2 + height_regime: S+P+9E; S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 352 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2441.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.492012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1441 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul DINICU GOLESCU + county: București + locality: Sector 1 + lat: 44.441966 + lng: 26.079602 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1181.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.617500+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1442 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B) + address: Bulevardul DINICU GOLESCU + county: București + locality: Sector 1 + lat: 44.44227 + lng: 26.079161 + risk_category: RS2 + height_regime: S+P+2E; S+P+Mz+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 660.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.765623+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1443 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.4390694 + lng: 26.1186998 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Dan CAPATANA + observations: Încadrare în clasă de risc seismic în anul 2007 + has_warning_panels: null + year_built: 1932 + surface: 220.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:20.880304+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1444 + fields: + parent_id: null + status: 1 + street_number: 12A + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.4391186 + lng: 26.1188377 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.006872+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1445 + fields: + parent_id: null + status: 1 + street_number: '135' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.447238 + lng: 26.136366 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 37.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.162733+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1446 + fields: + parent_id: null + status: 1 + street_number: '141' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.448572 + lng: 26.138719 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.283935+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1447 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.439283 + lng: 26.1188 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 643.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.416125+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1448 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.439926 + lng: 26.120336 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 552.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.528454+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1449 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.44022 + lng: 26.121194 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.642191+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1450 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.44067 + lng: 26.122 + risk_category: RS2 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.731994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1451 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.440761 + lng: 26.122442 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.833060+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1452 + fields: + parent_id: null + status: 1 + street_number: 47bis + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.443602 + lng: 26.128673 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 906.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:21.964808+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1453 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.441066 + lng: 26.122889 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 1179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.075550+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1454 + fields: + parent_id: null + status: 1 + street_number: 51 (corp A) + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.4412518 + lng: 26.12313297 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1956 + surface: 267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.215740+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1455 + fields: + parent_id: null + status: 1 + street_number: 51 (corp B+C) + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.441173 + lng: 26.123129 + risk_category: RS1 + height_regime: S+P+1E S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 256.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.397392+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1456 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.441754 + lng: 26.123883 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 535.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.615512+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1457 + fields: + parent_id: null + status: 1 + street_number: '60' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.441645 + lng: 26.124428 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 692.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.777270+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1458 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.442315 + lng: 26.125914 + risk_category: RS3 + height_regime: S+P+2E; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 726.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:22.943200+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1459 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.438813 + lng: 26.117748 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.075733+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1460 + fields: + parent_id: null + status: 1 + street_number: '87' + address: Bulevardul FERDINAND I + county: București + locality: Sector 2 + lat: 44.442689 + lng: 26.126562 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 708.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.205617+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1461 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Bulevardul GHEORGHE I. DUCA + county: București + locality: Sector 1 + lat: 44.449393 + lng: 26.077833 + risk_category: U2 + height_regime: S+P+4+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Valentin NEDRITA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1182.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.383932+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1462 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A+B) + address: Bulevardul GHEORGHE I. DUCA + county: București + locality: Sector 1 + lat: 44.447513 + lng: 26.076153 + risk_category: RS2 + height_regime: S+P+7E; S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mariana SUCEVEANU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1512.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.503754+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1463 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul GHEORGHE I. DUCA + county: București + locality: Sector 1 + lat: 44.448255 + lng: 26.0769 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 131.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.626135+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1464 + fields: + parent_id: null + status: 1 + street_number: 12÷14 + address: Bulevardul GHEORGHE MAGHERU (Cinematograful „PATRIA”) + county: București + locality: Sector 1 + lat: 44.4426339 + lng: 26.0991855 + risk_category: U1 + height_regime: S+P+7E S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 14665.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.737847+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1465 + fields: + parent_id: null + status: 1 + street_number: 2÷4 + address: Bulevardul GHEORGHE MAGHERU (Cinematograful „SCALA”) + county: București + locality: Sector 1 + lat: 44.443808 + lng: 26.098373 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 53 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 8329.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.848388+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1466 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Bulevardul GHEORGHE MAGHERU (Cinematograful „STUDIO”) + county: București + locality: Sector 1 + lat: 44.4448992 + lng: 26.0974282 + risk_category: U1 + height_regime: S1+S2+P+Mz+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion NEGESCU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 6344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:23.967879+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1467 + fields: + parent_id: null + status: 1 + street_number: 20 (2÷6) + address: Bulevardul GHEORGHE MAGHERU (colț cu Strada JULES MICHELET, Teatrul „C.I. + NOTTARA”) + county: București + locality: Sector 1 + lat: 44.44342989 + lng: 26.09874473 + risk_category: U2 + height_regime: P+9E; P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ioan Mihai PAUL + observations: Reîncadrare în clasă de risc seismic în anul 2016 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Mihai NĂVODARIU) + has_warning_panels: null + year_built: 1940 + surface: 7053.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.129892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1468 + fields: + parent_id: null + status: 1 + street_number: 6÷8 + address: Bulevardul GHEORGHE MAGHERU (Garaj „CICLOP”) + county: București + locality: Sector 1 + lat: 44.4414828 + lng: 26.0997047 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Gabriel NICULESCU + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1928 + surface: 4437.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.241144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1469 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Bulevardul GHEORGHE MAGHERU (Librăria „PAPIRUS”) + county: București + locality: Sector 1 + lat: 44.444766 + lng: 26.0975677 + risk_category: U1 + height_regime: S+P+8E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 49 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 4302.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.383663+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1470 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.443921 + lng: 26.098268 + risk_category: U1 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 3625.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.531154+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1471 + fields: + parent_id: null + status: 1 + street_number: 32÷36 (imobile B+E) + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.4453519 + lng: 26.0981462 + risk_category: U3 + height_regime: S+P+9E; S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1959 + surface: 16268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.685281+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1472 + fields: + parent_id: null + status: 1 + street_number: 32÷36 (tronson I+II+III) + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.4453983 + lng: 26.09802965 + risk_category: U2 + height_regime: S+P+9E; S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1959 + surface: 16268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:24.861964+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1473 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.446516 + lng: 26.096869 + risk_category: U3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 583.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.019664+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1474 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.442343 + lng: 26.09846 + risk_category: U2 + height_regime: S+P+Mz+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 126 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 17792.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.220101+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1475 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Bulevardul GHEORGHE MAGHERU + county: București + locality: Sector 1 + lat: 44.4432143 + lng: 26.0978328 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 162 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 17792.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.359181+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1476 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Bulevardul GHEORGHE MARINESCU + county: București + locality: Sector 5 + lat: 44.434979 + lng: 26.066951 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Andrei NEAGU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 167.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.521736+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1477 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Bulevardul GHEORGHE MARINESCU + county: București + locality: Sector 5 + lat: 44.434546 + lng: 26.06698 + risk_category: U2 + height_regime: S+P+4 + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 213.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.823667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1478 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Bulevardul GHEORGHE MARINESCU + county: București + locality: Sector 5 + lat: 44.4365528 + lng: 26.0668608 + risk_category: C + height_regime: S+P+6E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Anatolie CAZACLIU + observations: PVRTL nr.1/2004 + has_warning_panels: null + year_built: 1940 + surface: 175.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:25.922468+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1479 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.434383 + lng: 26.107472 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.014491+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1480 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.434673 + lng: 26.106898 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.114559+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1481 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.435827 + lng: 26.106082 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 402.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.277983+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1482 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.433935 + lng: 26.107917 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.398229+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1483 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.433845 + lng: 26.10804 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.524314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1484 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.433692 + lng: 26.108188 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.654840+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1485 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.431961 + lng: 26.109113 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.790693+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1486 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.431853 + lng: 26.109176 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:26.931115+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1487 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.435488 + lng: 26.10651 + risk_category: U2 + height_regime: S1+S2+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Ioan Mihai PAUL + observations: Reîncadrare în clasă de risc seismic în anul 2017 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Dan POPESCU) + has_warning_panels: null + year_built: 1925 + surface: 4625.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.083062+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1488 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.432809 + lng: 26.108778 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.319023+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1489 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.435733 + lng: 26.106161 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.475927+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1490 + fields: + parent_id: null + status: 1 + street_number: 44 (corp A) + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.431611 + lng: 26.109275 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban PAUNESCU + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.612234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1491 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.434916 + lng: 26.10697 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.753553+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1492 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.435274 + lng: 26.106538 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 2168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:27.890140+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1493 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Bulevardul HRISTO BOTEV + county: București + locality: Sector 3 + lat: 44.434666 + lng: 26.107194 + risk_category: U4 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Gheorghe RUSU CONSTANTIN + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1913 + surface: 717.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.025843+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1494 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Bulevardul I. C. BRĂTIANU (Librăria „COLŢEI”) + county: București + locality: Sector 3 + lat: 44.431049 + lng: 26.103797 + risk_category: U2 + height_regime: S+P+Mz+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.189290+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1495 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.432957 + lng: 26.102982 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.388965+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1496 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.4348133 + lng: 26.1022721 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.594404+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1497 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Bulevardul I. C. BRATIANU + county: București + locality: Sector 3 + lat: 44.432467 + lng: 26.103239 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1833 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.707013+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1498 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.431832 + lng: 26.103376 + risk_category: RS3 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1945 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.836891+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1499 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.430006 + lng: 26.103775 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1956 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:28.986639+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1500 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.429535 + lng: 26.103791 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1986 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.119596+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1501 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.43001 + lng: 26.103254 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.292896+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1502 + fields: + parent_id: null + status: 1 + street_number: 44bis + address: Bulevardul I. C. BRATIANU + county: București + locality: Sector 3 + lat: 44.429364 + lng: 26.103217 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1988 + surface: 7884.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.475657+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1503 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.431646 + lng: 26.103836 + risk_category: C + height_regime: S+P+8E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: PVRTL nr.170/2014 + has_warning_panels: null + year_built: 1936 + surface: 2235.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.644347+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1504 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Bulevardul I. C. BRĂTIANU + county: București + locality: Sector 3 + lat: 44.434055 + lng: 26.102683 + risk_category: RS1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.767990+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1505 + fields: + parent_id: null + status: 1 + street_number: 37 (corp A+B) + address: Bulevardul IANCU DE HUNEDOARA + county: București + locality: Sector 1 + lat: 44.45322 + lng: 26.097367 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 11554.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:29.890675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1506 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.454741 + lng: 26.081701 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.039246+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1507 + fields: + parent_id: null + status: 1 + street_number: '181' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.464788 + lng: 26.068614 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Mariana STOENESCU + observations: AC nr.368/27/M/15066/2011; PVRTL nr.01/2017 + has_warning_panels: null + year_built: 1937 + surface: 430.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.145850+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1508 + fields: + parent_id: null + status: 1 + street_number: 295÷297 + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.46882 + lng: 26.058795 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 570.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.285610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1509 + fields: + parent_id: null + status: 1 + street_number: 315 (corp F) + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.4685632 + lng: 26.0584344 + risk_category: U4 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1388.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.442095+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1510 + fields: + parent_id: null + status: 1 + street_number: '325' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.469589 + lng: 26.056098 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Stelian PICULESCU. Emilian TITARU + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1962 + surface: 3833.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.647273+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1511 + fields: + parent_id: null + status: 1 + street_number: '329' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.470069 + lng: 26.055579 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.787533+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1512 + fields: + parent_id: null + status: 1 + street_number: '333' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.470043 + lng: 26.054778 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3833.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:30.893605+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1513 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.456383 + lng: 26.080461 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 42 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 6444.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.051540+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1514 + fields: + parent_id: null + status: 1 + street_number: '65' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.45855 + lng: 26.07713 + risk_category: RS1 + height_regime: S+P+2E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 860.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.159481+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1515 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.459264 + lng: 26.076355 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.330644+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1516 + fields: + parent_id: null + status: 1 + street_number: 68 (corp A+B) + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.459503 + lng: 26.076155 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: AC nr.641/1091294/2012 PVRTL nr.1/2017 + has_warning_panels: null + year_built: 1938 + surface: 525.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.518097+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1517 + fields: + parent_id: null + status: 1 + street_number: 70÷84 + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.460033 + lng: 26.075851 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Moses DRIMER + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 1144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.726820+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1518 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.45873 + lng: 26.076882 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:31.902259+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1519 + fields: + parent_id: null + status: 1 + street_number: '94' + address: Bulevardul ION MIHALACHE + county: București + locality: Sector 1 + lat: 44.46061 + lng: 26.074668 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 15.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.042780+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1520 + fields: + parent_id: null + status: 1 + street_number: 128 (bloc 22) + address: Bulevardul IULIU MANIU + county: București + locality: Sector 6 + lat: 44.434164 + lng: 26.02095 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1966 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.156264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1521 + fields: + parent_id: null + status: 1 + street_number: 23 (bloc 3) + address: Bulevardul IULIU MANIU + county: București + locality: Sector 6 + lat: 44.434557 + lng: 25.987017 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.321472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1522 + fields: + parent_id: null + status: 1 + street_number: 57 (bloc OD16) + address: Bulevardul IULIU MANIU + county: București + locality: Sector 6 + lat: 44.4338781 + lng: 26.0286686 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 264 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 19492.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.498241+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1523 + fields: + parent_id: null + status: 1 + street_number: 59 (bloc 10A)- fost Bd. Pacii nr. 9 + address: Bulevardul IULIU MANIU + county: București + locality: Sector 6 + lat: 44.4338367 + lng: 26.0263164 + risk_category: RS3 + height_regime: S+P+8…11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.670368+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1524 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Bulevardul LACUL TEI + county: București + locality: Sector 2 + lat: 44.460438 + lng: 26.114847 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1956 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:32.865043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1525 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Bulevardul LASCĂR CATARGIU (imobil cu destinaţia de birouri şi locuinţe) + county: București + locality: Sector 1 + lat: 44.4492952 + lng: 26.0919365 + risk_category: U2 + height_regime: Ds+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.021972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1526 + fields: + parent_id: null + status: 1 + street_number: 11A + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.4477731 + lng: 26.094607 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 469.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.152310+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1527 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Bulevardul LASCAR CATARGIU + county: București + locality: Sector 1 + lat: 44.448127 + lng: 26.094698 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.271877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1528 + fields: + parent_id: null + status: 1 + street_number: 15A + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.4481 + lng: 26.094 + risk_category: C + height_regime: S+P+5E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mariana STOENESCU + observations: PVRTL nr.8/2004 + has_warning_panels: null + year_built: 1934 + surface: 2351.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.439736+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1529 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Bulevardul LASCAR CATARGIU + county: București + locality: Sector 1 + lat: 44.448285 + lng: 26.094384 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 1721.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.585103+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1530 + fields: + parent_id: null + status: 1 + street_number: 24÷26 + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.449424 + lng: 26.092472 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 7815.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.787856+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1531 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.449196 + lng: 26.092028 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1413.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:33.986692+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1532 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.449433 + lng: 26.092109 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 162.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.117705+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1533 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.4502 + lng: 26.090059 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1194.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.215272+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1534 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.45042297 + lng: 26.0903979 + risk_category: U1 + height_regime: Sp+D+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Şerban PĂUNESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 1386.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.321014+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1535 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.450789 + lng: 26.088751 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 137.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.474063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1536 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.4505567 + lng: 26.0900606 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: AC nr.479/53/2002 PVRTL nr.1/2003 + has_warning_panels: null + year_built: 1880 + surface: 716.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.597941+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1537 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.447661 + lng: 26.095109 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 196.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.737437+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1538 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.447462 + lng: 26.095061 + risk_category: RS2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 1393.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:34.975477+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1539 + fields: + parent_id: null + status: 1 + street_number: 9A + address: Bulevardul LASCĂR CATARGIU + county: București + locality: Sector 1 + lat: 44.4477148 + lng: 26.0949752 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1641.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.148949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1540 + fields: + parent_id: null + status: 1 + street_number: '100' + address: Bulevardul MĂRĂŞEŞTI + county: București + locality: Sector 4 + lat: 44.4225361 + lng: 26.1085835 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mircea IANCULESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 692.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.272700+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1541 + fields: + parent_id: null + status: 1 + street_number: 28 (corp A+B+C) + address: Bulevardul MĂRĂŞEŞTI + county: București + locality: Sector 4 + lat: 44.4200935 + lng: 26.1008308 + risk_category: RS2 + height_regime: S+P+4E+Ma; S+P+4E; S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.386707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1542 + fields: + parent_id: null + status: 1 + street_number: 42 (bloc 1) + address: Bulevardul MĂRĂŞEŞTI + county: București + locality: Sector 4 + lat: 44.4204154 + lng: 26.103285 + risk_category: U3 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 137 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dan CAPATANA + observations: încadrare în clasă de risc seismic în anul 2016; AC nr.531/41329/2016 + PVRTL nr.208/2017 + has_warning_panels: null + year_built: 1963 + surface: 11766.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.497963+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1543 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Bulevardul MĂRĂŞTI + county: București + locality: Sector 1 + lat: 44.469544 + lng: 26.073344 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai IONESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.643807+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1544 + fields: + parent_id: null + status: 1 + street_number: 10 (fost 40) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4346435 + lng: 26.0863635 + risk_category: RS2 + height_regime: S+P+2E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1888 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.774011+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1545 + fields: + parent_id: null + status: 1 + street_number: 13 (fost 67) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4343571 + lng: 26.0860956 + risk_category: RS2 + height_regime: S+P+3E+Ma; S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1922 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:35.917442+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1546 + fields: + parent_id: null + status: 1 + street_number: 15÷17 + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.4343983 + lng: 26.0859013 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 133.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.020229+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1547 + fields: + parent_id: null + status: 1 + street_number: 16 (fost 46) + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.434653 + lng: 26.0857631 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 386.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.186538+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1548 + fields: + parent_id: null + status: 1 + street_number: 21 (fost 75) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4344116 + lng: 26.085424 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1894 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.331103+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1549 + fields: + parent_id: null + status: 1 + street_number: 23 (fost 77) + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.4343747 + lng: 26.0852769 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 11.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.439214+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1550 + fields: + parent_id: null + status: 1 + street_number: 24 (fost 54) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4346406 + lng: 26.0853142 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 10.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.594279+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1551 + fields: + parent_id: null + status: 1 + street_number: 26 (fost 56) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4346446 + lng: 26.0850325 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1894 + surface: 821.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.706532+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1552 + fields: + parent_id: null + status: 1 + street_number: 29 (fost 83) + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.43435882 + lng: 26.08465126 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Nicolae GHITA + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1935 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.815537+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1553 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A+B) + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.43463724 + lng: 26.08474865 + risk_category: U1 + height_regime: S+P+4E+Ma S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 37 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 4501.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:36.993955+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1554 + fields: + parent_id: null + status: 1 + street_number: 35 (fost 85) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434491 + lng: 26.086134 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1959 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.113038+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1555 + fields: + parent_id: null + status: 1 + street_number: 37 (fost 87) + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.43435 + lng: 26.083728 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 14.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.216707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1556 + fields: + parent_id: null + status: 1 + street_number: 39 (fost 89) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434504 + lng: 26.087271 + risk_category: RS2 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 3684.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.362953+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1557 + fields: + parent_id: null + status: 1 + street_number: 41 (fost 91) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434348 + lng: 26.083023 + risk_category: RS1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.484093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1558 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.434312 + lng: 26.082796 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 174.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.606667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1559 + fields: + parent_id: null + status: 1 + street_number: 45 (fost 93) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434311 + lng: 26.082615 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.743345+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1560 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.434336 + lng: 26.082075 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 83 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 259.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:37.858918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1561 + fields: + parent_id: null + status: 1 + street_number: 5 (fost 59) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4344424 + lng: 26.0869087 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 14.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.042766+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1562 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Bulevardul MIHAIL KOGĂLNICEANU + county: București + locality: Sector 5 + lat: 44.434331 + lng: 26.081742 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 43 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 7353.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.245758+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1563 + fields: + parent_id: null + status: 1 + street_number: 55 (fost 101) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434255 + lng: 26.081169 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1959 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.444786+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1564 + fields: + parent_id: null + status: 1 + street_number: 7 (fost 61) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.4344342 + lng: 26.0867593 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.575063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1565 + fields: + parent_id: null + status: 1 + street_number: 8 (fost 38) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434594 + lng: 26.087269 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 2229.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.690443+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1566 + fields: + parent_id: null + status: 1 + street_number: 9 (fost 63) + address: Bulevardul MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434396 + lng: 26.086527 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel PANICOV + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:38.843069+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1567 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Bulevardul MIRCEA VODĂ + county: București + locality: Sector 3 + lat: 44.4312443 + lng: 26.1113008 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.027489+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1568 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul MIRCEA VODA + county: București + locality: Sector 3 + lat: 44.418477 + lng: 26.113198 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.236164+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1569 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Bulevardul NICOLAE BĂLCESCU (Librăria „DIVERTA – DALLES”) + county: București + locality: Sector 1 + lat: 44.438301 + lng: 26.100917 + risk_category: U2 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 134 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 9345.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.440539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1570 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.437924 + lng: 26.101261 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 3127.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.586495+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1571 + fields: + parent_id: null + status: 1 + street_number: 21 (corp A+B) + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.4398158 + lng: 26.1000693 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Mircea MIRONESCU + observations: Încadrare în clasă de risc seismic în anul 2018 + has_warning_panels: null + year_built: 1940 + surface: 5952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.706818+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1572 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.4389908 + lng: 26.1009162 + risk_category: C + height_regime: S+P+12E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 119 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ioan NICULA. NicolaeŢOPA + observations: PVRTL nr.305/2011 + has_warning_panels: null + year_built: 1928 + surface: 1231.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:39.831854+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1573 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.4392905 + lng: 26.1000439 + risk_category: C + height_regime: 2S+P+11E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 98 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Silvia CARAMAN + observations: PVRTL nr.547/2005 + has_warning_panels: null + year_built: 1928 + surface: 12318.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.004738+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1574 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.439932 + lng: 26.100225 + risk_category: U1 + height_regime: S+P+8E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: MihaiURSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2756.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.158259+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1575 + fields: + parent_id: null + status: 1 + street_number: 32÷34 + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.440068 + lng: 26.100158 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 6996.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.310498+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1576 + fields: + parent_id: null + status: 1 + street_number: 35÷35A + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.43985 + lng: 26.099867 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 49 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 7558.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.466386+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1577 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul NICOLAE BĂLCESCU + county: București + locality: Sector 1 + lat: 44.437371 + lng: 26.101414 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.603453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1578 + fields: + parent_id: null + status: 1 + street_number: 41 (corp A) + address: Bulevardul NICOLAE GRIGORESCU (Centrul de Diagnostic şi Tratament „TITAN”) + county: București + locality: Sector 3 + lat: 44.42056141 + lng: 26.16500506 + risk_category: U1 + height_regime: Ds+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan STĂNCIULESCU + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 6584.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.717633+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1579 + fields: + parent_id: null + status: 1 + street_number: '103' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438792 + lng: 26.119874 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 196.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.843575+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1580 + fields: + parent_id: null + status: 1 + street_number: '113' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.439189 + lng: 26.121941 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Vasile DORDEA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 640.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:40.980365+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1581 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438805 + lng: 26.12006 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 313.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.122088+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1582 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438804 + lng: 26.120055 + risk_category: RS1 + height_regime: S+P+Mz+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.259795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1583 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438803 + lng: 26.120049 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.386876+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1584 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438802 + lng: 26.120043 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.547005+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1585 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438801 + lng: 26.120038 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.664844+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1586 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A+B) + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.4386483 + lng: 26.1206919 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1914 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.829697+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1587 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.4388 + lng: 26.120034 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:41.960683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1588 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438834 + lng: 26.121046 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.134848+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1589 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438798 + lng: 26.120024 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.291705+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1590 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438796 + lng: 26.120011 + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1899 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.470425+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1591 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438795 + lng: 26.120009 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.602904+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1592 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438795 + lng: 26.120007 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Niculaie TUDOSE + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1890 + surface: 721.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.784840+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1593 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438943 + lng: 26.122001 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1957 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:42.911215+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1594 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438794 + lng: 26.12 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1865 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.041671+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1595 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438793 + lng: 26.119998 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Corneliu MUDRACENCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.168455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1596 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.4398838 + lng: 26.1237914 + risk_category: C + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 0 + certified_expert: '0' + observations: AC nr.86/877210/2009 PVRTL nr.9410/2012 + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.286176+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1597 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.43879 + lng: 26.119979 + risk_category: N/A + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.411357+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1598 + fields: + parent_id: null + status: 1 + street_number: 66 (corp C) + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.439583 + lng: 26.124329 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 715.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.540810+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1599 + fields: + parent_id: null + status: 1 + street_number: 71 (corp A+B) + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.4392359 + lng: 26.1218874 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.661385+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1600 + fields: + parent_id: null + status: 1 + street_number: 91 (corp B) + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.43847 + lng: 26.118056 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.800789+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1601 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Bulevardul PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.44038 + lng: 26.129301 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 158.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:43.930965+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1602 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Bulevardul REGINA ELISABETA (“GRAND HOTEL DU BOULEVARD”) + county: București + locality: Sector 5 + lat: 44.4346001 + lng: 26.0978003 + risk_category: C + height_regime: S+P+Mz+4E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Traian POPP + observations: AC nr.724/1027900/2011 PVRTL nr.29101401/2014 + has_warning_panels: null + year_built: 1871 + surface: 843.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.060276+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1603 + fields: + parent_id: null + status: 1 + street_number: 24 (6) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU, PALATUL + CENTRULUI MILITAR NAȚIONAL) + county: București + locality: Sector 5 + lat: 44.434774 + lng: 26.097192 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin NICUT + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 135.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.178198+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1604 + fields: + parent_id: null + status: 1 + street_number: 25 (5) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434455 + lng: 26.083826 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 5.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.314337+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1605 + fields: + parent_id: null + status: 1 + street_number: 30 (10) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434553 + lng: 26.084435 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.463085+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1606 + fields: + parent_id: null + status: 1 + street_number: 33 (13) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434482 + lng: 26.085568 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1885 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.650408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1607 + fields: + parent_id: null + status: 1 + street_number: 35 (15) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434491 + lng: 26.086134 + risk_category: U1 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:44.805390+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1608 + fields: + parent_id: null + status: 1 + street_number: 39 (19) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434504 + lng: 26.087271 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anca GRIGORAS + observations: '' + has_warning_panels: null + year_built: 1875 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.011238+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1609 + fields: + parent_id: null + status: 1 + street_number: 41 (21) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434348 + lng: 26.083023 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 1558.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.130638+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1610 + fields: + parent_id: null + status: 1 + street_number: 44 (24) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434727 + lng: 26.093889 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 3821.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.268153+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1611 + fields: + parent_id: null + status: 1 + street_number: 54 (34) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434577 + lng: 26.085849 + risk_category: RS2 + height_regime: S+P+Mz+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.410455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1612 + fields: + parent_id: null + status: 1 + street_number: 55 (35) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434491 + lng: 26.086134 + risk_category: U3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1966 + surface: 4874.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.582617+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1613 + fields: + parent_id: null + status: 1 + street_number: 57 (37, corp A+B) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.4346988 + lng: 26.0956299 + risk_category: U3 + height_regime: S+P+2E+Ma; P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Maria DARIE + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1900 + surface: 1602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.702829+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1614 + fields: + parent_id: null + status: 1 + street_number: 59 (39) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434504 + lng: 26.087271 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Maria DARIE + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1900 + surface: 1898.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.831534+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1615 + fields: + parent_id: null + status: 1 + street_number: 61 (41) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434348 + lng: 26.083023 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:45.994080+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1616 + fields: + parent_id: null + status: 1 + street_number: 63 (43) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434312 + lng: 26.082796 + risk_category: U3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 71 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 5824.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.137535+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1617 + fields: + parent_id: null + status: 1 + street_number: 69 (49) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434336 + lng: 26.082075 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 807.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.238620+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1618 + fields: + parent_id: null + status: 1 + street_number: 71 (51) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434331 + lng: 26.081742 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.362020+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1619 + fields: + parent_id: null + status: 1 + street_number: 73 (53) + address: Bulevardul REGINA ELISABETA (fost Bulevardul MIHAIL KOGĂLNICEANU) + county: București + locality: Sector 5 + lat: 44.434418 + lng: 26.079678 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.525544+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1620 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Bulevardul REGINA ELISABETA (imobil birouri – ADMINISTRAŢIA FONDULUI + IMOBILIAR) + county: București + locality: Sector 3 + lat: 44.434699 + lng: 26.09563 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1062.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.722241+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1621 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul REGINA ELISABETA (sediul PRIMĂRIEI MUNICIPIULUI BUCUREŞTI) + county: București + locality: Sector 5 + lat: 44.4344622 + lng: 26.0931862 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Constantin PAVEL + observations: A.C. nr.177/2010 A.C. nr.447/2014 P.V.R.T.L. nr.1772/1/2014 + has_warning_panels: null + year_built: 1911 + surface: 21992.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:46.859539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1622 + fields: + parent_id: null + status: 1 + street_number: 13.04.2001 + address: Bulevardul REGINA ELISABETA (UNIVERSITATEA BUCUREȘTI) + county: București + locality: Sector 1 + lat: 44.4355117 + lng: 26.1017417 + risk_category: U3 + height_regime: D+P+2E+2Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mircea MIRONESCU + observations: Încadrat în clasa a II-a de risc seismic spre clasa a III-a de risc + seismic + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.049369+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1623 + fields: + parent_id: null + status: 1 + street_number: 15÷19 + address: Bulevardul REGINA ELISABETA + county: București + locality: Sector 3 + lat: 44.434581 + lng: 26.0987 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 6143.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.189156+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1624 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Bulevardul REGINA ELISABETA + county: București + locality: Sector 3 + lat: 44.434581 + lng: 26.0987 + risk_category: U2 + height_regime: S1+S2+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 16854.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.302208+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1625 + fields: + parent_id: null + status: 1 + street_number: 75÷79 + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.421952 + lng: 26.091199 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 3225.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.443137+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1626 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.422837 + lng: 26.093124 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.574520+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1627 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.424922 + lng: 26.096921 + risk_category: RS3 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1919 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.700202+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1628 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.424922 + lng: 26.096921 + risk_category: RS3 + height_regime: P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin BĂLAN + observations: '' + has_warning_panels: null + year_built: 1919 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:47.810272+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1629 + fields: + parent_id: null + status: 1 + street_number: 33 (corp B) + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: null + lng: null + risk_category: U1 + height_regime: P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Catalin TROFINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 162.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.004974+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1630 + fields: + parent_id: null + status: 1 + street_number: 33÷35 (corp A) + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.4221652 + lng: 26.0920691 + risk_category: U2 + height_regime: S+P+1E; S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Cătălin ȘTEFAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 810.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.199238+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1631 + fields: + parent_id: null + status: 1 + street_number: 33÷35 (corp A+B+C) + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.424038 + lng: 26.095468 + risk_category: U1 + height_regime: P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1962.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.366191+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1632 + fields: + parent_id: null + status: 1 + street_number: 33÷35 (corp C) + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: null + lng: null + risk_category: U1 + height_regime: P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRÂNZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.484165+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1633 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.424742 + lng: 26.0964433 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STĂNCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.619349+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1634 + fields: + parent_id: null + status: 1 + street_number: 36÷38 + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.424742 + lng: 26.0964433 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: AC nr.49/2004 PVRTL nr.450/2006 + has_warning_panels: null + year_built: 1900 + surface: 818.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.774454+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1635 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.421845 + lng: 26.091189 + risk_category: RS2 + height_regime: P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:48.946752+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1636 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.421845 + lng: 26.091189 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.099367+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1637 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.421959 + lng: 26.091214 + risk_category: RS1 + height_regime: P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.230514+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1638 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.421959 + lng: 26.091214 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.381616+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1639 + fields: + parent_id: null + status: 1 + street_number: '62' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.42352 + lng: 26.094208 + risk_category: RS1 + height_regime: P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.522682+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1640 + fields: + parent_id: null + status: 1 + street_number: '62' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.42352 + lng: 26.094208 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.671836+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1641 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.42314 + lng: 26.093493 + risk_category: RS3 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.810279+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1642 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Bulevardul REGINA MARIA + county: București + locality: Sector 4 + lat: 44.42314 + lng: 26.093493 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:49.952270+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1643 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.439005 + lng: 26.087099 + risk_category: N/A + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.120670+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1644 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Bulevardul SCHITU MĂGUREANU + county: București + locality: Sector 1 + lat: 44.4361583 + lng: 26.0886051 + risk_category: U2 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.308478+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1645 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Bulevardul SCHITU MĂGUREANU + county: București + locality: Sector 1 + lat: 44.436341 + lng: 26.088537 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculae TUDOSE; Marius GABOR + observations: CONSOLIDAT PARŢIAL ! + has_warning_panels: null + year_built: 1930 + surface: 297.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.501936+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1646 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.43974 + lng: 26.08681 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.675866+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1647 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.436604 + lng: 26.088534 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.820067+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1648 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Bulevardul SCHITU MĂGUREANU + county: București + locality: Sector 1 + lat: 44.436983 + lng: 26.088302 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:50.977907+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1649 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Bulevardul SCHITU MĂGUREANU + county: București + locality: Sector 5 + lat: 44.433928 + lng: 26.08968 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1891 + surface: 476.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.133611+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1650 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Bulevardul SCHITU MĂGUREANU + county: București + locality: Sector 1 + lat: 44.4385 + lng: 26.087376 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Teodor MARIN + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 34.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.321509+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1651 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.43854523 + lng: 26.08747292 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.494209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1652 + fields: + parent_id: null + status: 1 + street_number: 41B + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.4339943 + lng: 26.0897056 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.685308+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1653 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.435212 + lng: 26.089409 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.816917+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1654 + fields: + parent_id: null + status: 1 + street_number: 51 (corp A+B+C) + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.439096 + lng: 26.087048 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ecaterina BALL + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:51.970220+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1655 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.439706 + lng: 26.086694 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 1829.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:52.115023+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1656 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.435199 + lng: 26.089365 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:52.261655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1657 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Bulevardul SCHITU MAGUREANU + county: București + locality: Sector 1 + lat: 44.43533 + lng: 26.089289 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:52.461465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1658 + fields: + parent_id: null + status: 1 + street_number: 19 (bloc C6) + address: Bulevardul TIMISOARA + county: București + locality: Sector 6 + lat: 44.428038 + lng: 26.04984 + risk_category: N/A + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 180 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Şerban PAUNESCU + observations: Expertul concluzionează că nu este necesară consolidarea imobilului + has_warning_panels: null + year_built: 1963 + surface: 145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:52.704770+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1659 + fields: + parent_id: null + status: 1 + street_number: '105' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433292 + lng: 26.11793 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1148.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:52.847459+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1660 + fields: + parent_id: null + status: 1 + street_number: '111' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433263 + lng: 26.118556 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 269.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.019218+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1661 + fields: + parent_id: null + status: 1 + street_number: 124 (corp A+B) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433046 + lng: 26.120553 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 266.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.151675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1662 + fields: + parent_id: null + status: 1 + street_number: '317' + address: Calea CĂLĂRAȘILOR + county: București + locality: Sector 3 + lat: 44.43190419 + lng: 26.1362002 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.325484+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1663 + fields: + parent_id: null + status: 1 + street_number: '319' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432064 + lng: 26.138182 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 58.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.500372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1664 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432818 + lng: 26.112576 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ioan VARSA + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.698291+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1665 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432827 + lng: 26.112878 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BERBECI + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 540.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:53.869587+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1666 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432863 + lng: 26.112892 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1215.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.003787+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1667 + fields: + parent_id: null + status: 1 + street_number: 39 (corp A) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432888 + lng: 26.113305 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 2401.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.114776+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1668 + fields: + parent_id: null + status: 1 + street_number: 41 (corp B) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432917 + lng: 26.113579 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.274700+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1669 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 248.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.457943+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1670 + fields: + parent_id: null + status: 1 + street_number: 53 (corp A) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1688.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.703756+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1671 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.432914 + lng: 26.112553 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 640.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:54.964574+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1672 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433148 + lng: 26.114603 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.102084+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1673 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433255 + lng: 26.116743 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.197319+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1674 + fields: + parent_id: null + status: 1 + street_number: '87' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433319 + lng: 26.116163 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 576.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.327821+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1675 + fields: + parent_id: null + status: 1 + street_number: 90 (corp A+B) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433218 + lng: 26.117558 + risk_category: RS3 + height_regime: S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 260.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.457222+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1676 + fields: + parent_id: null + status: 1 + street_number: '91' + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.433338 + lng: 26.116509 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 228.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.640413+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1677 + fields: + parent_id: null + status: 1 + street_number: 99 (corp A) + address: Calea CĂLĂRAŞILOR + county: București + locality: Sector 3 + lat: 44.43332 + lng: 26.1172 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1922 + surface: 124.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.807043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1678 + fields: + parent_id: null + status: 1 + street_number: 99 (37A, corp A+B) + address: Calea DOROBANŢILOR (colț cu Bulevardul IANCU DE HUNEDOARA, Studio "MARTIN") + county: București + locality: Sector 1 + lat: 44.456852 + lng: 26.096462 + risk_category: U1 + height_regime: S+P+6E; S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Gabriel SERBAN + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1935 + surface: 2602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:55.943692+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1679 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.446932 + lng: 26.099518 + risk_category: U2 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 3301.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.086869+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1680 + fields: + parent_id: null + status: 1 + street_number: 134 (bloc 11) + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.4564165 + lng: 26.0970791 + risk_category: RS3 + height_regime: S+P+Mz+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 61.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.174760+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1681 + fields: + parent_id: null + status: 1 + street_number: 36÷40 (bloc 1, ZODIAC) + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.44934957 + lng: 26.10018913 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1943 + surface: 6925.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.303994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1682 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.44965 + lng: 26.099166 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 796.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.436695+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1683 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.449731 + lng: 26.099153 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Maria GABOR + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 856.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.578553+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1684 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.449662 + lng: 26.099076 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.748012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1685 + fields: + parent_id: null + status: 1 + street_number: '65' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.45055 + lng: 26.099003 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Maria GABOR + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 1137.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:56.922639+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1686 + fields: + parent_id: null + status: 1 + street_number: '69' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.4509723 + lng: 26.0988514 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 356.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.054017+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1687 + fields: + parent_id: null + status: 1 + street_number: 70 (corp A+B) + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.4518755 + lng: 26.0989917 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 703.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.208430+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1688 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.451207 + lng: 26.098868 + risk_category: U3 + height_regime: Ds+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Virgil SAVA + observations: Încadrare în clasă de risc seismic RsIII spre RsII în anul 2000 + has_warning_panels: null + year_built: 1937 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.345859+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1689 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.451278 + lng: 26.098853 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Maria GABOR + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 521.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.507437+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1690 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Calea DOROBANŢILOR + county: București + locality: Sector 1 + lat: 44.45129 + lng: 26.098771 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 727.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.637306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1691 + fields: + parent_id: null + status: 1 + street_number: '111' + address: Calea DUDEŞTI + county: București + locality: Sector 3 + lat: 44.423859 + lng: 26.125375 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai IANCULESCU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 776.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.767843+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1692 + fields: + parent_id: null + status: 1 + street_number: '139' + address: Calea DUDEŞTI + county: București + locality: Sector 3 + lat: 44.422643 + lng: 26.129703 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 321.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:57.895393+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1693 + fields: + parent_id: null + status: 1 + street_number: '141' + address: Calea DUDEŞTI + county: București + locality: Sector 3 + lat: 44.42262 + lng: 26.129748 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 159.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.040766+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1694 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Calea DUDEŞTI + county: București + locality: Sector 3 + lat: 44.4204048 + lng: 26.1349565 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.282990+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1695 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Calea DUDEŞTI + county: București + locality: Sector 3 + lat: 44.4204048 + lng: 26.1349565 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.437368+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1696 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc 20) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40575015 + lng: 26.0796947 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.560465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1697 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc A1) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40621628 + lng: 26.07879949 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.677233+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1698 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc A10) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40572125 + lng: 26.07672976 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae GHITA + observations: '' + has_warning_panels: null + year_built: 1951 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.812330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1699 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc A3) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40584971 + lng: 26.07786554 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 254.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:58.964182+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1700 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc A5) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40550335 + lng: 26.07689142 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laur AGAPI + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.176614+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1701 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc A6) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40631965 + lng: 26.07751952 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 254.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.347024+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1702 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc B2) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40576401 + lng: 26.07911695 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.503875+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1703 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc B3) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40509714 + lng: 26.07726553 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.637931+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1704 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc B4) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40530501 + lng: 26.07708024 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Helmuth KÖBER + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.768272+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1705 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc C2) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40555074 + lng: 26.07932285 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:44:59.891994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1706 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc C4) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40520295 + lng: 26.078375 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Helmuth KÖBER + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.036674+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1707 + fields: + parent_id: null + status: 1 + street_number: 72 (bloc C6) + address: Calea FERENTARI + county: București + locality: Sector 5 + lat: 44.40485043 + lng: 26.07740544 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Helmuth KÖBER + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.191816+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1708 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Calea FLOREASCA + county: București + locality: Sector 1 + lat: 44.454412 + lng: 26.100681 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 5577.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.355694+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1709 + fields: + parent_id: null + status: 1 + street_number: '112' + address: Calea FLOREASCA + county: București + locality: Sector 1 + lat: 44.461896 + lng: 26.101367 + risk_category: C + height_regime: S+P+2E+Ma+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: AC nr.425/16/F/14972/2013 PVRTL nr.28/2014 + has_warning_panels: null + year_built: 1938 + surface: 749.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.464314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1710 + fields: + parent_id: null + status: 1 + street_number: '145' + address: Calea FLOREASCA + county: București + locality: Sector 1 + lat: 44.461951 + lng: 26.101056 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.619810+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1711 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Calea FLOREASCA + county: București + locality: Sector 1 + lat: 44.454873 + lng: 26.100664 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 843.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.720166+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1712 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Calea GIULEŞTI + county: București + locality: Sector 6 + lat: 44.448115 + lng: 26.062725 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.842926+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1713 + fields: + parent_id: null + status: 1 + street_number: '133' + address: Calea GIULEŞTI + county: București + locality: Sector 6 + lat: 44.462604 + lng: 26.041479 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 47.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:00.988462+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1714 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Calea GIULEŞTI + county: București + locality: Sector 6 + lat: 44.45864 + lng: 26.051679 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 999.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.159428+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1715 + fields: + parent_id: null + status: 1 + street_number: 46÷48 (bloc 4+4anexă; tronson 1+2+3+4) + address: Calea GIULEŞTI + county: București + locality: Sector 6 + lat: 44.448359 + lng: 26.06255 + risk_category: U3 + height_regime: S+P+7E + 1E retras + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic RsIII în anul 2018 (documentaţie + tehnico economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1961 + surface: 4256.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.334320+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1716 + fields: + parent_id: null + status: 1 + street_number: 50÷52 (corp A+B) + address: Calea GIULEŞTI + county: București + locality: Sector 6 + lat: 44.460741 + lng: 26.047536 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4815.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.515720+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1717 + fields: + parent_id: null + status: 1 + street_number: '143' + address: Calea GRIVIŢEI (Hotel “NORD”) + county: București + locality: Sector 1 + lat: 44.4461093 + lng: 26.0785572 + risk_category: C + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Traian POPP + observations: AC nr.58G/1998 PVRTL nr.1/2001 + has_warning_panels: null + year_built: 1965 + surface: 131.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.673297+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1718 + fields: + parent_id: null + status: 1 + street_number: 103 (corp A+B+C) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445611 + lng: 26.082549 + risk_category: U1 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1904 + surface: 596.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.790835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1719 + fields: + parent_id: null + status: 1 + street_number: 107÷109 (corp A) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44553262 + lng: 26.08226197 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Stere CARACOTI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 2885.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:01.924941+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1720 + fields: + parent_id: null + status: 1 + street_number: '123' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44587 + lng: 26.08117 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.064008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1721 + fields: + parent_id: null + status: 1 + street_number: '125' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445912 + lng: 26.081007 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 154.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.211605+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1722 + fields: + parent_id: null + status: 1 + street_number: 127 (corp A+D+E) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.457506 + lng: 26.060651 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P; + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.414340+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1723 + fields: + parent_id: null + status: 1 + street_number: 127 (corp B+C) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445955 + lng: 26.080845 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 582.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.522974+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1724 + fields: + parent_id: null + status: 1 + street_number: '129' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445997 + lng: 26.080683 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 947.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.689918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1725 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.444291 + lng: 26.089824 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.848904+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1726 + fields: + parent_id: null + status: 1 + street_number: 131 (corp B) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.446039 + lng: 26.08052 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 328.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:02.988978+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1727 + fields: + parent_id: null + status: 1 + street_number: '139' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.447692 + lng: 26.075562 + risk_category: U2 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 108 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.109387+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1728 + fields: + parent_id: null + status: 1 + street_number: 166A + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.451239 + lng: 26.068503 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.277727+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1729 + fields: + parent_id: null + status: 1 + street_number: '172' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.45226 + lng: 26.066865 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.479234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1730 + fields: + parent_id: null + status: 1 + street_number: 174 (bloc S) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.452412 + lng: 26.066735 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 46 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 44.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.646278+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1731 + fields: + parent_id: null + status: 1 + street_number: 174B + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.452412 + lng: 26.066735 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.854388+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1732 + fields: + parent_id: null + status: 1 + street_number: 184B (fost 184B -corp A) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.453576 + lng: 26.064951 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Horia DUGAN + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1935 + surface: 1375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:03.994606+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1733 + fields: + parent_id: null + status: 1 + street_number: 184C (fost 184B - corp B) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.453576 + lng: 26.064951 + risk_category: RS1 + height_regime: S+P+2E+Ma; + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 96.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.200972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1734 + fields: + parent_id: null + status: 1 + street_number: 188 (bloc M) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.454355 + lng: 26.063825 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 46 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 495.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.337804+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1735 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44432772 + lng: 26.08822162 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.492782+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1736 + fields: + parent_id: null + status: 1 + street_number: '234' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.469663 + lng: 26.051604 + risk_category: N/A + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 96 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 6548.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.616226+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1737 + fields: + parent_id: null + status: 1 + street_number: 236 (bloc H) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.470516 + lng: 26.050915 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 93 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 7612.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.779656+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1738 + fields: + parent_id: null + status: 1 + street_number: '238' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.472502 + lng: 26.04965 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 136 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 11568.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:04.944799+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1739 + fields: + parent_id: null + status: 1 + street_number: 23A + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44420041 + lng: 26.08831694 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.078633+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1740 + fields: + parent_id: null + status: 1 + street_number: '240' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.473209 + lng: 26.048852 + risk_category: U3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 96 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 6683.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.225754+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1741 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.444601 + lng: 26.087083 + risk_category: U1 + height_regime: P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 3683.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.357644+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1742 + fields: + parent_id: null + status: 1 + street_number: 36 (corp A+B) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44503263 + lng: 26.08625694 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 700.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.513204+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1743 + fields: + parent_id: null + status: 1 + street_number: 36 (corp C) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.44529912 + lng: 26.08632492 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 700.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.607077+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1744 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.444679 + lng: 26.086709 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Dan CAPATANA + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.766459+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1745 + fields: + parent_id: null + status: 1 + street_number: 395 (bloc M) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.470358 + lng: 26.050564 + risk_category: U2 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 92 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 7717.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:05.923042+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1746 + fields: + parent_id: null + status: 1 + street_number: 43 (corp B) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.444731 + lng: 26.08646 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 548.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.067709+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1747 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445301 + lng: 26.084417 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 516.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.154308+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1748 + fields: + parent_id: null + status: 1 + street_number: 63 (corp A+B+C) + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.457506 + lng: 26.060651 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 1.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.267159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1749 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Calea GRIVIŢEI + county: București + locality: Sector 1 + lat: 44.445279 + lng: 26.084185 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 840.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.387023+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1750 + fields: + parent_id: null + status: 1 + street_number: 113 (54) + address: Calea MOŞILOR (colț cu Bulevardul CAROL I) + county: București + locality: Sector 2 + lat: 44.439529 + lng: 26.11568 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.521506+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1751 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.448342 + lng: 26.124934 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.632008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1752 + fields: + parent_id: null + status: 1 + street_number: 103 (corp A+B) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.436409 + lng: 26.111155 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.756300+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1753 + fields: + parent_id: null + status: 1 + street_number: 105 (corp A+B+C) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.439529 + lng: 26.11568 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:06.952684+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1754 + fields: + parent_id: null + status: 1 + street_number: 106 (corp A+B) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.434807 + lng: 26.108059 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.105080+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1755 + fields: + parent_id: null + status: 1 + street_number: 108 (corp A+B) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.434887 + lng: 26.108156 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.265485+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1756 + fields: + parent_id: null + status: 1 + street_number: '115' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.436985 + lng: 26.112558 + risk_category: RS3 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.393897+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1757 + fields: + parent_id: null + status: 1 + street_number: 120 (corp A+B+C) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.43565 + lng: 26.10907 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.506553+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1758 + fields: + parent_id: null + status: 1 + street_number: '122' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.435834 + lng: 26.109469 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.624786+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1759 + fields: + parent_id: null + status: 1 + street_number: '123' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.437252 + lng: 26.113076 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.725143+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1760 + fields: + parent_id: null + status: 1 + street_number: '124' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.435886 + lng: 26.109834 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.846116+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1761 + fields: + parent_id: null + status: 1 + street_number: '126' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.435943 + lng: 26.110115 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:07.988028+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1762 + fields: + parent_id: null + status: 1 + street_number: 126A + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.435943 + lng: 26.110115 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1222.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.144947+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1763 + fields: + parent_id: null + status: 1 + street_number: '131' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.437583 + lng: 26.113528 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 29 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 228.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.296806+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1764 + fields: + parent_id: null + status: 1 + street_number: '133' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.438504 + lng: 26.114808 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Ionel BELGUN + observations: Reîncadrare în clasă de risc seismic în anul 2017 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Dan POPESCU) + has_warning_panels: null + year_built: 1938 + surface: 1979.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.422405+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1765 + fields: + parent_id: null + status: 1 + street_number: 134÷134A + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.436299 + lng: 26.111513 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1860 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.605615+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1766 + fields: + parent_id: null + status: 1 + street_number: 136÷138 + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.436308 + lng: 26.111159 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1860 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.720009+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1767 + fields: + parent_id: null + status: 1 + street_number: '145' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.448588 + lng: 26.124124 + risk_category: U2 + height_regime: S+P+3E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Gheorghe MIERTOIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1442.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:08.878826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1768 + fields: + parent_id: null + status: 1 + street_number: '149' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.439966 + lng: 26.116086 + risk_category: U1 + height_regime: S+Ds+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 184.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.122029+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1769 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.431405 + lng: 26.105384 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.289948+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1770 + fields: + parent_id: null + status: 1 + street_number: '203' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.440964 + lng: 26.117052 + risk_category: RS1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.412123+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1771 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.4308502 + lng: 26.1043884 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: AC nr.367/965853/2013 PVRTL nr.1154863/2013 + has_warning_panels: null + year_built: 1940 + surface: 552.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.523920+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1772 + fields: + parent_id: null + status: 1 + street_number: 223 (bloc 31C) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.444138 + lng: 26.119451 + risk_category: RS3 + height_regime: S+P+8…9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1981 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.642681+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1773 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.430995 + lng: 26.104505 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 798.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.734210+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1774 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.431071 + lng: 26.104586 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DOBRESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.831457+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1775 + fields: + parent_id: null + status: 1 + street_number: 251 (bloc 51bis) + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.447522 + lng: 26.122691 + risk_category: RS1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin GRIGORESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:09.965455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1776 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.431132 + lng: 26.104843 + risk_category: U2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2016 (cu acordul tuturor + proprietarilor). + has_warning_panels: null + year_built: 1885 + surface: 1275.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.169410+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1777 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.430787 + lng: 26.104436 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.346533+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1778 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.430948 + lng: 26.104709 + risk_category: RS1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1892 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.502249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1779 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.43111 + lng: 26.104982 + risk_category: U2 + height_regime: P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Manoiu OCTAVIAN + observations: Reincadrare in clasa de risc seismic in anul 2019 (imobilul a fost + incadrat initial in RS I de catre expertul tehnic atestat Ing. Alexandru NEFIAN) + has_warning_panels: null + year_built: 1930 + surface: 442.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.634800+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1780 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.43119 + lng: 26.105119 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.742449+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1781 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.431252 + lng: 26.10525 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: N.icola COSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.830251+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1782 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.434021 + lng: 26.107414 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRÎNZEI + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 11.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:10.977280+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1783 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.432758 + lng: 26.106606 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: Încadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1890 + surface: 680.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.130131+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1784 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.432942 + lng: 26.106781 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.310535+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1785 + fields: + parent_id: null + status: 1 + street_number: '82' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.433003 + lng: 26.106839 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1276.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.468795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1786 + fields: + parent_id: null + status: 1 + street_number: '84' + address: Calea MOȘILOR + county: București + locality: Sector 3 + lat: 44.43286953 + lng: 26.10683844 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1864 + surface: 1348.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.602248+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1787 + fields: + parent_id: null + status: 1 + street_number: 86bis + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.442218 + lng: 26.118719 + risk_category: RS1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.731677+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1788 + fields: + parent_id: null + status: 1 + street_number: '90' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.433615 + lng: 26.107681 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria CRACIUN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.807088+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1789 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Calea MOŞILOR + county: București + locality: Sector 3 + lat: 44.433731 + lng: 26.107707 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria CRACIUN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:11.925626+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1790 + fields: + parent_id: null + status: 1 + street_number: '96' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.434284 + lng: 26.107918 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ioan VÎRSA + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1803.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.055670+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1791 + fields: + parent_id: null + status: 1 + street_number: '98' + address: Calea MOŞILOR + county: București + locality: Sector 2 + lat: 44.434324 + lng: 26.107801 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.276531+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1792 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Calea PLEVNEI + county: București + locality: Sector 5 + lat: 44.433639 + lng: 26.089522 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 622.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.414134+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1793 + fields: + parent_id: null + status: 1 + street_number: 11bis (corp B+C) + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.439016 + lng: 26.075205 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.572485+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1794 + fields: + parent_id: null + status: 1 + street_number: 131A + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.433639 + lng: 26.089522 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.702460+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1795 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.435188 + lng: 26.086998 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil FIERBINTEANU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.816465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1796 + fields: + parent_id: null + status: 1 + street_number: 22 (corp A+B+C+D) + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.435429 + lng: 26.086614 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU. Nicolae ROSCA + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:12.949758+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1797 + fields: + parent_id: null + status: 1 + street_number: 26A + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.435754 + lng: 26.085732 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.068175+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1798 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.436715 + lng: 26.08358 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.292466+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1799 + fields: + parent_id: null + status: 1 + street_number: 46÷48 (corp A+B, C+D, G) + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.4371081 + lng: 26.0820879 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.452327+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1800 + fields: + parent_id: null + status: 1 + street_number: 5÷7 + address: Calea PLEVNEI + county: București + locality: Sector 5 + lat: 44.434226 + lng: 26.088304 + risk_category: U3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.574076+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1801 + fields: + parent_id: null + status: 1 + street_number: 54 (corp A+B) + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.437046 + lng: 26.080912 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.724129+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1802 + fields: + parent_id: null + status: 1 + street_number: 56 (corp A+B) + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.437068 + lng: 26.080681 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.822355+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1803 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Calea PLEVNEI + county: București + locality: Sector 1 + lat: 44.437061 + lng: 26.080562 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:13.932645+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1804 + fields: + parent_id: null + status: 1 + street_number: 332÷336 (bloc 43A+B) + address: Calea RAHOVEI + county: București + locality: Sector 5 + lat: 44.412901 + lng: 26.072603 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vlad DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.057959+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1805 + fields: + parent_id: null + status: 1 + street_number: 46 (corp A+B) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4212048 + lng: 26.0858788 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.243877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1806 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.421652 + lng: 26.087006 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 2389.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.379774+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1807 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4062716 + lng: 26.0641426 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.542437+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1808 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4062716 + lng: 26.0641426 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.700011+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1809 + fields: + parent_id: null + status: 1 + street_number: 63 (corp A+B) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.421652 + lng: 26.087006 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1894 + surface: 21.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.823514+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1810 + fields: + parent_id: null + status: 1 + street_number: 65 (corp A+B+C) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.422443 + lng: 26.090289 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:14.925183+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1811 + fields: + parent_id: null + status: 1 + street_number: '69' + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4153489 + lng: 26.0780353 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.048939+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1812 + fields: + parent_id: null + status: 1 + street_number: 71 (corp A+B) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4099918 + lng: 26.0693795 + risk_category: RS2 + height_regime: S+P+1E; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1895 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.223470+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1813 + fields: + parent_id: null + status: 1 + street_number: 72 (corp A+B) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4152328 + lng: 26.077809 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.335002+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1814 + fields: + parent_id: null + status: 1 + street_number: 74÷76 + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.4099918 + lng: 26.0693795 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.493225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1815 + fields: + parent_id: null + status: 1 + street_number: 86 (corp A+B+C) + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.422443 + lng: 26.090289 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.699713+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1816 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Calea RAHOVEI + county: București + locality: Sector 4 + lat: 44.421652 + lng: 26.087006 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.852266+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1817 + fields: + parent_id: null + status: 1 + street_number: '105' + address: Calea ŞERBAN VODĂ + county: București + locality: Sector 4 + lat: 44.419249 + lng: 26.101521 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: null + surface: 1205.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:15.965947+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1818 + fields: + parent_id: null + status: 1 + street_number: '107' + address: Calea ȘERBAN VODĂ + county: București + locality: Sector 4 + lat: 44.41817855 + lng: 26.10109092 + risk_category: U1 + height_regime: Ds+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.083744+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1819 + fields: + parent_id: null + status: 1 + street_number: '109' + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.417963 + lng: 26.100897 + risk_category: RS1 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1893 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.159019+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1820 + fields: + parent_id: null + status: 1 + street_number: '111' + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.417876 + lng: 26.100874 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1948 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.325957+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1821 + fields: + parent_id: null + status: 1 + street_number: 115 (corp A+B) + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.417649 + lng: 26.100818 + risk_category: RS1 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.574649+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1822 + fields: + parent_id: null + status: 1 + street_number: '124' + address: Calea ŞERBAN VODĂ + county: București + locality: Sector 4 + lat: 44.418295 + lng: 26.100906 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 912.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.743086+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1823 + fields: + parent_id: null + status: 1 + street_number: '126' + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.418212 + lng: 26.100866 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.889941+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1824 + fields: + parent_id: null + status: 1 + street_number: '138' + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.417751 + lng: 26.100665 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1915 + surface: 376.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:16.995272+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1825 + fields: + parent_id: null + status: 1 + street_number: '139' + address: Calea ŞERBAN VODA + county: București + locality: Sector 4 + lat: 44.416166 + lng: 26.101228 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 22.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.121705+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1826 + fields: + parent_id: null + status: 1 + street_number: 143 (corp A+B) + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.415986 + lng: 26.101388 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1917 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.249528+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1827 + fields: + parent_id: null + status: 1 + street_number: 147 (corp A+B) + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.415815 + lng: 26.101562 + risk_category: RS3 + height_regime: S+P; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.390427+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1828 + fields: + parent_id: null + status: 1 + street_number: '180' + address: Calea ŞERBAN VODA + county: București + locality: Sector 4 + lat: 44.415655 + lng: 26.101576 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 977.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.598346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1829 + fields: + parent_id: null + status: 1 + street_number: '266' + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.407424 + lng: 26.095706 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 1866.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.771657+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1830 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Calea ŞERBAN VODĂ + county: București + locality: Sector 4 + lat: 44.423343 + lng: 26.102901 + risk_category: U2 + height_regime: S+P+Mz+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 29 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1374.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:17.918632+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1831 + fields: + parent_id: null + status: 1 + street_number: 43 (bloc 2) + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.421575 + lng: 26.102869 + risk_category: RS1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 160 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 1256.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.014276+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1832 + fields: + parent_id: null + status: 1 + street_number: 81÷83 + address: Calea SERBAN VODA + county: București + locality: Sector 4 + lat: 44.419781 + lng: 26.102022 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 257.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.126818+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1833 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Calea VICTORIEI (hotel “CONTINENTAL”) + county: București + locality: Sector 1 + lat: 44.436928 + lng: 26.0982224 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Mircea MIRONESCU + observations: AC nr.3/693520/2008 PVRTL nr.18/5945/S.G/2009 + has_warning_panels: null + year_built: 1900 + surface: 66.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.271817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1834 + fields: + parent_id: null + status: 1 + street_number: 33÷35 + address: Calea VICTORIEI (Teatrul de revistă “CONSTANTIN TĂNASE”) + county: București + locality: Sector 1 + lat: 44.4360113 + lng: 26.0977755 + risk_category: C + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 66 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor NEDRITA + observations: PVRTL nr.3403/2008 + has_warning_panels: null + year_built: 1930 + surface: 48.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.403821+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1835 + fields: + parent_id: null + status: 1 + street_number: 1÷5 (corp A+B+C+D) + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.43057892 + lng: 26.09660411 + risk_category: U2 + height_regime: S+P+9E;P+9ES+Mz+9; S+P+Mz+9; P+9 + is_still_present: true + consolidation_status: 'NO' + apartment_count: 148 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1311.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.586909+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1836 + fields: + parent_id: null + status: 1 + street_number: 101 (corp A+B) + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.441972 + lng: 26.094241 + risk_category: U1 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 95 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugeniu IORDANESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 7572.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.837126+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1837 + fields: + parent_id: null + status: 1 + street_number: 103÷105 (corp A+B) + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.44358669 + lng: 26.09256538 + risk_category: U2 + height_regime: S+P+10E; S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 81 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 16121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:18.992831+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1838 + fields: + parent_id: null + status: 1 + street_number: '112' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.442046 + lng: 26.094222 + risk_category: U1 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 5212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:19.133242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1839 + fields: + parent_id: null + status: 1 + street_number: '115' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.445415 + lng: 26.090991 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1887 + surface: 2518.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:19.274505+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1840 + fields: + parent_id: null + status: 1 + street_number: '122' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.443268 + lng: 26.093183 + risk_category: RS2 + height_regime: S+P+Mz+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:19.380041+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1841 + fields: + parent_id: null + status: 1 + street_number: '124' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.443392 + lng: 26.093071 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 3377.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:19.595504+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1842 + fields: + parent_id: null + status: 1 + street_number: 128A + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.4437118 + lng: 26.0927391 + risk_category: C + height_regime: S+P+8E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 59 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai NAVODARIU + observations: PVRTL nr.3259/2011 + has_warning_panels: null + year_built: 1935 + surface: 6675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:19.841999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1843 + fields: + parent_id: null + status: 1 + street_number: 128B + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.443712 + lng: 26.092739 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.070330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1844 + fields: + parent_id: null + status: 1 + street_number: 12A + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.432112 + lng: 26.097372 + risk_category: U3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai VOICULESCU + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1978 + surface: 5164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.238575+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1845 + fields: + parent_id: null + status: 1 + street_number: '134' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.444078 + lng: 26.092358 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 3115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.387375+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1846 + fields: + parent_id: null + status: 1 + street_number: '135' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.448294 + lng: 26.089111 + risk_category: RS1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.534253+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1847 + fields: + parent_id: null + status: 1 + street_number: '136' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.444169 + lng: 26.092262 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 4976.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.681159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1848 + fields: + parent_id: null + status: 1 + street_number: '139' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.448538 + lng: 26.088925 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:20.880993+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1849 + fields: + parent_id: null + status: 1 + street_number: '143' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.448774 + lng: 26.088746 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 82 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 114.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.098783+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1850 + fields: + parent_id: null + status: 1 + street_number: 16÷20 + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.433348 + lng: 26.097916 + risk_category: RS1 + height_regime: S+P+2E; S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.307005+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1851 + fields: + parent_id: null + status: 1 + street_number: '190' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.447496 + lng: 26.08983 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 2876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.436663+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1852 + fields: + parent_id: null + status: 1 + street_number: 2÷4 + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.430383 + lng: 26.096888 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 72 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Mihai VOICULESCU + observations: Reîncadrare în clasă de risc seismic în anul 2017 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Voicu DORDEA) + has_warning_panels: null + year_built: 1928 + surface: 11782.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.588596+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1853 + fields: + parent_id: null + status: 1 + street_number: '208' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.449503 + lng: 26.088614 + risk_category: U1 + height_regime: P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 52.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.744167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1854 + fields: + parent_id: null + status: 1 + street_number: '214' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.449723 + lng: 26.088163 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 69 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dan POPESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Dragoş BADEA) + has_warning_panels: null + year_built: 1941 + surface: 425.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:21.950989+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1855 + fields: + parent_id: null + status: 1 + street_number: 22÷24 + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.4335719 + lng: 26.09818449 + risk_category: U2 + height_regime: 2S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Adina SIMION + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1939 + surface: 836.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.138577+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1856 + fields: + parent_id: null + status: 1 + street_number: '220' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.450551 + lng: 26.087485 + risk_category: U1 + height_regime: 2S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Mihai VOICULESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1945 + surface: 22.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.309204+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1857 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.4341663 + lng: 26.0980107 + risk_category: C + height_regime: S+P+9E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: PVRTL nr.3640/1996 + has_warning_panels: null + year_built: null + surface: 1595.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.455854+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1858 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.434099 + lng: 26.098194 + risk_category: U2 + height_regime: 2S+P+12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 49 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihail STĂNESCU + observations: Reîncadrare în clasă de risc seismic în anul 2012 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Mircea MIRONESCU) + has_warning_panels: null + year_built: 1936 + surface: 671.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.590678+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1859 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Calea VICTORIEI + county: București + locality: Sector 3 + lat: 44.433871 + lng: 26.098374 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1822 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.755316+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1860 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.435602 + lng: 26.097808 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1909 + surface: 4545.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:22.955788+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1861 + fields: + parent_id: null + status: 1 + street_number: 48÷50 + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.436364 + lng: 26.098063 + risk_category: U3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Maria DARIE + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 1465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:23.166818+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1862 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.436628 + lng: 26.098029 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1850 + surface: 3447.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:23.325455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1863 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.436765 + lng: 26.097971 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1907 + surface: 174.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:23.494365+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1864 + fields: + parent_id: null + status: 1 + street_number: 87÷89 + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.442821 + lng: 26.093413 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 4452.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:23.671837+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1865 + fields: + parent_id: null + status: 1 + street_number: 91÷93 + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.442881 + lng: 26.092799 + risk_category: RS2 + height_regime: S+P+5E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 10707.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:23.863598+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1866 + fields: + parent_id: null + status: 1 + street_number: '95' + address: Calea VICTORIEI + county: București + locality: Sector 1 + lat: 44.443342 + lng: 26.092967 + risk_category: U1 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 37 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 4167.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.041560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1867 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Drumul GĂZARULUI + county: București + locality: Sector 4 + lat: 44.3878317 + lng: 26.0982562 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 34.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.222393+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1868 + fields: + parent_id: null + status: 1 + street_number: 40 (bloc 54) + address: Drumul MURGULUI + county: București + locality: Sector 3 + lat: 44.4200125 + lng: 26.1457954 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 12562.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.365516+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1869 + fields: + parent_id: null + status: 1 + street_number: 20 (bloc C2) + address: Drumul TABEREI + county: București + locality: Sector 6 + lat: 44.4254108 + lng: 26.049475 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 216 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 15993.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.562621+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1870 + fields: + parent_id: null + status: 1 + street_number: 30 (bloc OD3, sc.1+2+3+4+5) + address: Drumul TABEREI + county: București + locality: Sector 6 + lat: 44.4243169 + lng: 26.04238056 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 180 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 14668.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.712807+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1871 + fields: + parent_id: null + status: 1 + street_number: 59 (bloc TD48) + address: Drumul TABEREI + county: București + locality: Sector 6 + lat: 44.4225508 + lng: 26.026849 + risk_category: RS3 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 4664.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:24.897972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1872 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea BISERICA ALBĂ + county: București + locality: Sector 1 + lat: 44.44259 + lng: 26.095413 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ion NICULA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 417.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.104925+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1873 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Intrarea CALŢUNA + county: București + locality: Sector 4 + lat: 44.419327 + lng: 26.093541 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.263956+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1874 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Intrarea CALŢUNA + county: București + locality: Sector 4 + lat: 44.418824 + lng: 26.093913 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 513.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.460874+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1875 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B+C) + address: Intrarea CLUCEREASA MARIA + county: București + locality: Sector 3 + lat: 44.428636 + lng: 26.109743 + risk_category: RS1 + height_regime: S+P+Ma; S+P; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.674225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1876 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea COSTACHE NEGRI + county: București + locality: Sector 5 + lat: 44.43221 + lng: 26.07844 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.802832+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1877 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea DACILOR + county: București + locality: Sector 1 + lat: 44.446517 + lng: 26.101241 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:25.941389+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1878 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Intrarea DRAGUŞA + county: București + locality: Sector 4 + lat: 44.420855 + lng: 26.098328 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 330.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.106515+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1879 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Intrarea DRAGUŞA + county: București + locality: Sector 4 + lat: 44.42066 + lng: 26.097875 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 264.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.224698+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1880 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea DRAGUŞA + county: București + locality: Sector 4 + lat: 44.420777 + lng: 26.09839 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 240.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.371938+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1881 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea DUMITRESCU PROCOPIE + county: București + locality: Sector 2 + lat: 44.442511 + lng: 26.116975 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 748.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.549542+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1882 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea DUMITRESCU PROCOPIE + county: București + locality: Sector 2 + lat: 44.442677 + lng: 26.117107 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.761619+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1883 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.4475679 + lng: 26.087107 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 750.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:26.879159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1884 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.447568 + lng: 26.087107 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ROSCA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.045312+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1885 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.4477456 + lng: 26.0870877 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.214966+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1886 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.447617 + lng: 26.087301 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.362318+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1887 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.447827 + lng: 26.086912 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Gheorghe DUMITRU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.554274+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1888 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Intrarea DUMITRU LEMNEA + county: București + locality: Sector 1 + lat: 44.447883 + lng: 26.087012 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 652.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.804260+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1889 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448649 + lng: 26.08618 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Maria.DARIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 390.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:27.974021+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1890 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Intrarea GHEORGHE MANU + county: București + locality: Sector 1 + lat: 44.449192 + lng: 26.091382 + risk_category: RS3 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:28.121077+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1891 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea GRIGORE CANTILLI + county: București + locality: Sector 1 + lat: 44.451096 + lng: 26.098552 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 675.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:28.309556+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1892 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Intrarea ÎNTRE GÂRLE + county: București + locality: Sector 4 + lat: 44.4214237 + lng: 26.1083182 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:28.470712+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1893 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Intrarea ÎNTRE GÂRLE + county: București + locality: Sector 4 + lat: 44.4214861 + lng: 26.1091038 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:28.660672+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1894 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea IOANID + county: București + locality: Sector 2 + lat: 44.445656 + lng: 26.1055 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 924.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:28.823791+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1895 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea ION CĂLIN + county: București + locality: Sector 2 + lat: 44.449296 + lng: 26.105965 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.034117+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1896 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Intrarea ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.439942 + lng: 26.106904 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 173.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.160139+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1897 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea ITALIANA + county: București + locality: Sector 2 + lat: 44.43734 + lng: 26.109225 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.344794+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1898 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea ITALIANA + county: București + locality: Sector 2 + lat: 44.437519 + lng: 26.109401 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 832.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.464865+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1899 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea LICURICI + county: București + locality: Sector 3 + lat: 44.428452 + lng: 26.120676 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.553842+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1900 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Intrarea LICURICI + county: București + locality: Sector 3 + lat: 44.42801 + lng: 26.120611 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.725353+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1901 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Intrarea LICURICI + county: București + locality: Sector 3 + lat: 44.427788 + lng: 26.120578 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ion POPA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 16.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:29.965288+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1902 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Intrarea MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.447837 + lng: 26.103882 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:30.171933+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1903 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.448538 + lng: 26.103885 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:30.318602+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1904 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Intrarea MONEASA + county: București + locality: Sector 1 + lat: 44.448827 + lng: 26.096012 + risk_category: U3 + height_regime: Ds+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Constantin PAVEL + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1935 + surface: 372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:30.465935+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1905 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Intrarea NESTOREL + county: București + locality: Sector 4 + lat: 44.42079 + lng: 26.109824 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 295.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:30.581915+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1906 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Intrarea NICOLAE VERMONT + county: București + locality: Sector 2 + lat: 44.435585 + lng: 26.109594 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:30.761120+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1907 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea NICOLAE VERMONT + county: București + locality: Sector 2 + lat: 44.435743 + lng: 26.109954 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.008288+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1908 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea NICOLAE VERMONT + county: București + locality: Sector 2 + lat: 44.435585 + lng: 26.109594 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 489.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.197885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1909 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Intrarea NICOLAE VERMONT + county: București + locality: Sector 2 + lat: 44.435585 + lng: 26.109594 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.346739+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1910 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea PROCOPIE DUMITRESCU + county: București + locality: Sector 2 + lat: 44.442489 + lng: 26.116812 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 509.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.508999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1911 + fields: + parent_id: null + status: 1 + street_number: 17C + address: Intrarea PROGRESULUI + county: București + locality: Sector 1 + lat: 44.415483 + lng: 26.078567 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.651618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1912 + fields: + parent_id: null + status: 1 + street_number: 29B + address: Intrarea RIGAS + county: București + locality: Sector 1 + lat: 44.436015 + lng: 26.093387 + risk_category: U2 + height_regime: P+S+6 + is_still_present: true + consolidation_status: 'NO' + apartment_count: 47 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 472.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:31.815415+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1913 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea ROMA + county: București + locality: Sector 1 + lat: 44.4547297 + lng: 26.0941105 + risk_category: C + height_regime: Ds+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Silvia CARAMAN + observations: AC 682/17/R/30489/2009 PVRTL nr.1/2011 + has_warning_panels: null + year_built: 1937 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.047732+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1914 + fields: + parent_id: null + status: 1 + street_number: 18 (apartament nr.20) + address: Intrarea SECTORULUI + county: București + locality: Sector 3 + lat: 44.431345 + lng: 26.141561 + risk_category: U1 + height_regime: P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mircea BOLDISOR – BUTA Dinu CIOBOTARU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1950 + surface: 56.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.255633+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1915 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Intrarea SFÂNTUL MINA + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+Ds+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.385150+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1916 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Intrarea SFÂNTUL MINA + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1894 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.535819+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1917 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Intrarea SFÂNTUL MINA + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.660271+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1918 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B) + address: Intrarea SLOBOZIA + county: București + locality: Sector 4 + lat: 44.418899 + lng: 26.0909 + risk_category: U1 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:32.870918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1919 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Intrarea SPĂTARULUI + county: București + locality: Sector 2 + lat: 44.438236 + lng: 26.112771 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1376.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.066987+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1920 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Intrarea ŞTAFETEI + county: București + locality: Sector 3 + lat: 44.426767 + lng: 26.102538 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.297159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1921 + fields: + parent_id: null + status: 1 + street_number: 2A + address: Intrarea ŞTAFETEI + county: București + locality: Sector 3 + lat: 44.431805 + lng: 26.128311 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.447536+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1922 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 19) + address: Intrarea TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.464274 + lng: 26.127452 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Elena DRAGOMIRESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.577443+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1923 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea VASILE PĂUN + county: București + locality: Sector 5 + lat: 44.434071 + lng: 26.088008 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.710741+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1924 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Intrarea VICTOR EFTIMIU + county: București + locality: Sector 1 + lat: 44.436557 + lng: 26.093383 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 7905.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:33.885527+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1925 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Intrarea VLADIMIR STREINU + county: București + locality: Sector 2 + lat: 44.440925 + lng: 26.127354 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:34.103963+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1926 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Intrarea VLADIMIR STREINU + county: București + locality: Sector 2 + lat: 44.440241 + lng: 26.127456 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:34.329817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1927 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A) + address: Piața ALEXANDRU LAHOVARI + county: București + locality: Sector 1 + lat: 44.4458873 + lng: 26.1001846 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 2607.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:34.531223+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1928 + fields: + parent_id: null + status: 1 + street_number: 5A + address: Piata ALEXANDRU LAHOVARI + county: București + locality: Sector 1 + lat: 44.445136 + lng: 26.100066 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 2955.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:34.649055+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1929 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Piața GĂRII FILARET + county: București + locality: Sector 4 + lat: 44.4161367 + lng: 26.0914899 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:34.823679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1930 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Piaţa HARALAMBIE BOTESCU (fostă Piaţa MATACHE) + county: București + locality: Sector 1 + lat: 44.44517554 + lng: 26.08047394 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.066315+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1931 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Piaţa HARALAMBIE BOTESCU (fostă Piaţa MATACHE) + county: București + locality: Sector 1 + lat: 44.44522541 + lng: 26.08016262 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.300408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1932 + fields: + parent_id: null + status: 1 + street_number: 3 (36) + address: Piața MIHAIL KOGALNICEANU (fostă Bulevardul REGINA ELISABETA) + county: București + locality: Sector 5 + lat: 44.43473 + lng: 26.095103 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Petre PINTEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.538482+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1933 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Piața MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434342 + lng: 26.087674 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.671154+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1934 + fields: + parent_id: null + status: 1 + street_number: 8 (corp central, sc.A+B+C) + address: Piața MIHAIL KOGALNICEANU + county: București + locality: Sector 5 + lat: 44.434641 + lng: 26.087883 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1959 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.809630+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1935 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Piaţa NAŢIUNILE UNITE + county: București + locality: Sector 4 + lat: 44.43029 + lng: 26.096593 + risk_category: RS2 + height_regime: S+P+17E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:35.973462+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1936 + fields: + parent_id: null + status: 1 + street_number: 13 (90) + address: Piata PACHE PROTOPOPESCU (fostă Bulevardul REPUBLICII) + county: București + locality: Sector 2 + lat: 44.437873 + lng: 26.116383 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.166679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1937 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Piata PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.437793 + lng: 26.116731 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 141.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.291193+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1938 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Piaţa PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.437809 + lng: 26.115871 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1940 + surface: 3268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.462054+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1939 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Piaţa PACHE PROTOPOPESCU + county: București + locality: Sector 2 + lat: 44.438165 + lng: 26.115929 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1201.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.647583+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1940 + fields: + parent_id: null + status: 1 + street_number: '9 (tr.I: sc.A, tr.II: sc.B+C, tr.III: sc.D)' + address: Piaţa ROMANĂ (“LIBRĂRIA COPIILOR”) + county: București + locality: Sector 1 + lat: 44.447247 + lng: 26.096811 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 156 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mihai URSĂCHESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 (stâlpii şi bulbii + de la faţada tr.I au fost investigaţi în 1996 şi au fost încadraţi în RsI de + expertul tehnic atestat M.D.R.A.P. Dan STĂNCIULESCU) + has_warning_panels: null + year_built: 1960 + surface: 4645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.730653+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1941 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Piaţa ROMANĂ + county: București + locality: Sector 1 + lat: 44.446552 + lng: 26.096431 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mariana STOENESCU + observations: '' + has_warning_panels: null + year_built: 1907 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:36.882648+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1942 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Piaţa ROMANĂ + county: București + locality: Sector 1 + lat: 44.446552 + lng: 26.096431 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: AC nr.110R/1997 PVRTL nr.230442/2000 + has_warning_panels: null + year_built: 1900 + surface: 1485.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.064661+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1943 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Piaţa SFINŢII VOIEVOZI + county: București + locality: Sector 1 + lat: 44.445569 + lng: 26.083551 + risk_category: U3 + height_regime: S+P+Mz+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 1586.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.272555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1944 + fields: + parent_id: null + status: 1 + street_number: 76 (bloc PC8) + address: Soseaua ALEXANDRIEI + county: București + locality: Sector 5 + lat: 44.403709 + lng: 26.05801 + risk_category: RS3 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian ENESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.455816+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1945 + fields: + parent_id: null + status: 1 + street_number: '105' + address: Soseaua ANDRONACHE + county: București + locality: Sector 2 + lat: 44.474102 + lng: 26.151043 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.664052+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1946 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Soseaua CHITILEI + county: București + locality: Sector 1 + lat: 44.479074 + lng: 26.037798 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 275.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.787966+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1947 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 34) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.451125 + lng: 26.124924 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1991 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1972 + surface: 374.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:37.933688+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1948 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc R26) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.453719 + lng: 26.126871 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 6908.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.076810+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1949 + fields: + parent_id: null + status: 1 + street_number: 21 (bloc R24) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.455038 + lng: 26.127841 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6952.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.220032+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1950 + fields: + parent_id: null + status: 1 + street_number: 23B (bloc 1B – IRTA) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.4554199 + lng: 26.128443 + risk_category: U4 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 55 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 6.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.375238+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1951 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc R48) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.457742 + lng: 26.129684 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 682.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.632853+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1952 + fields: + parent_id: null + status: 1 + street_number: 33 (bloc OD42) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.457959 + lng: 26.130141 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3135.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.828788+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1953 + fields: + parent_id: null + status: 1 + street_number: 37 (bloc OD43) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.458562 + lng: 26.130536 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 325.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:38.966046+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1954 + fields: + parent_id: null + status: 1 + street_number: 39 (bloc R14) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.458994 + lng: 26.130532 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 682.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:39.110885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1955 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc R27) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.453145 + lng: 26.126444 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6908.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:39.295153+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1956 + fields: + parent_id: null + status: 1 + street_number: 51 (bloc R11) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.460708 + lng: 26.13168 + risk_category: RS1 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 682.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:39.516272+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1957 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc OD40) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.453333 + lng: 26.126856 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 325.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:39.785413+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1958 + fields: + parent_id: null + status: 1 + street_number: 8 (bloc S5) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.455415 + lng: 26.129791 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 1232.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:39.965118+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1959 + fields: + parent_id: null + status: 1 + street_number: 81 (bloc 84) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.466725 + lng: 26.137963 + risk_category: N/A + height_regime: S+P+10…11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mariana SUCEVEANU + observations: '' + has_warning_panels: null + year_built: 1982 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.095218+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1960 + fields: + parent_id: null + status: 1 + street_number: 9 (bloc OD56) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.453686 + lng: 26.126376 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3201.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.263354+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1961 + fields: + parent_id: null + status: 1 + street_number: 95 (bloc 93) + address: Soseaua COLENTINA + county: București + locality: Sector 2 + lat: 44.468526 + lng: 26.142394 + risk_category: N/A + height_regime: P+10 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mariana. SUCEVEANU + observations: '' + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.396042+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1962 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Soseaua COTROCENI + county: București + locality: Sector 6 + lat: 44.43743 + lng: 26.068044 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1393.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.590963+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1963 + fields: + parent_id: null + status: 1 + street_number: 32 (corp B) + address: Șoseaua COTROCENI + county: București + locality: Sector 6 + lat: 44.4368418 + lng: 26.06556968 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Constantin FIRTEA + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.841284+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1964 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Soseaua COTROCENI + county: București + locality: Sector 6 + lat: 44.437755 + lng: 26.069199 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 1341.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:40.989814+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1965 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc 11B) + address: Soseaua FUNDENI + county: București + locality: Sector 2 + lat: 44.443078 + lng: 26.166271 + risk_category: RS3 + height_regime: S+P+14E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 6487.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.144828+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1966 + fields: + parent_id: null + status: 1 + street_number: 120A (bloc 13) + address: Șoseaua GIURGIULUI + county: București + locality: Sector 4 + lat: 44.38993 + lng: 26.091847 + risk_category: U2 + height_regime: S+P+16E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 369 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 18706.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.305751+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1967 + fields: + parent_id: null + status: 1 + street_number: 126 (bloc 7) + address: Șoseaua GIURGIULUI + county: București + locality: Sector 4 + lat: 44.386035 + lng: 26.091325 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 256 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 1784.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.432031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1968 + fields: + parent_id: null + status: 1 + street_number: '220' + address: Șoseaua GIURGIULUI + county: București + locality: Sector 4 + lat: 44.3752648 + lng: 26.0906007 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.618912+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1969 + fields: + parent_id: null + status: 1 + street_number: 38 (corp A+B) + address: Șoseaua GIURGIULUI + county: București + locality: Sector 4 + lat: 44.398081 + lng: 26.096049 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 756.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.783164+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1970 + fields: + parent_id: null + status: 1 + street_number: 72÷86 (bloc B) + address: Șoseaua GIURGIULUI + county: București + locality: Sector 4 + lat: 44.394793 + lng: 26.093957 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 196 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 13167.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:41.960446+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1971 + fields: + parent_id: null + status: 1 + street_number: 128 (bloc G) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.442711 + lng: 26.148511 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:42.146609+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1972 + fields: + parent_id: null + status: 1 + street_number: 39 (bloc 103A) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.442742 + lng: 26.1448371 + risk_category: RS3 + height_regime: S+P+9 … 10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:42.307366+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1973 + fields: + parent_id: null + status: 1 + street_number: 47 (bloc 102C) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.442681 + lng: 26.145766 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:42.483687+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1974 + fields: + parent_id: null + status: 1 + street_number: 53 (bloc 102B) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.4429544 + lng: 26.1469526 + risk_category: RS3 + height_regime: S+P+10 … 11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:42.712972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1975 + fields: + parent_id: null + status: 1 + street_number: 57 (bloc 101B) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.443228 + lng: 26.147477 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:42.903870+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1976 + fields: + parent_id: null + status: 1 + street_number: 59 (bloc 101A) + address: Soseaua IANCULUI + county: București + locality: Sector 2 + lat: 44.443108 + lng: 26.148354 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1979 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.003200+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1977 + fields: + parent_id: null + status: 1 + street_number: 107÷119 + address: Șoseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.4402157 + lng: 26.1350167 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 269 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 21208.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.147780+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1978 + fields: + parent_id: null + status: 1 + street_number: '125' + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.43904 + lng: 26.136087 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.311906+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1979 + fields: + parent_id: null + status: 1 + street_number: 147÷169 (bloc D5) + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.43676 + lng: 26.136561 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 8787.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.441161+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1980 + fields: + parent_id: null + status: 1 + street_number: 29 (bloc P3) + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.445938 + lng: 26.126976 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.586030+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1981 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.445525 + lng: 26.1273 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DRAGAN + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.764880+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1982 + fields: + parent_id: null + status: 1 + street_number: 42÷62 + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.445752 + lng: 26.126606 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:43.969618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1983 + fields: + parent_id: null + status: 1 + street_number: 57÷65 + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.443415 + lng: 26.130532 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:44.143647+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1984 + fields: + parent_id: null + status: 1 + street_number: 64÷88 + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.444135 + lng: 26.12801 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:44.364360+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1985 + fields: + parent_id: null + status: 1 + street_number: 67÷73 + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.443149 + lng: 26.131097 + risk_category: RS3 + height_regime: S+P+8…9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:44.501563+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1986 + fields: + parent_id: null + status: 1 + street_number: 75÷83 (bloc C17, sc.A+B+C) + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.4425102 + lng: 26.1321263 + risk_category: U3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Zefir APOSTOL + observations: Încadrare în clasă de risc seismic în anul 2009 + has_warning_panels: null + year_built: 1961 + surface: 9108.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:44.679777+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1987 + fields: + parent_id: null + status: 1 + street_number: 85÷93 + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.442256 + lng: 26.132746 + risk_category: RS3 + height_regime: S+P+8…9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:44.882751+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1988 + fields: + parent_id: null + status: 1 + street_number: 90÷96 (bloc D17, tr.A+B+C) + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.4429893 + lng: 26.1291518 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 147 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Mircea MIRONESCU + observations: Reîncadrare în clasă de risc seismic în anul 2015 + acordul asociaţiei + proprietarilor (tronsonul A a fost încadrat iniţial în RsI de expertii tehnici + atestat M.D.R.A.P. Radu VĂCĂREANU, Alexandrina PRETORIAN, Dragoş BADEA; tronsoanele + B + C au fost încadr + has_warning_panels: null + year_built: 1963 + surface: 1292.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.057136+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1989 + fields: + parent_id: null + status: 1 + street_number: 98÷106 (bloc D16) + address: Soseaua MIHAI BRAVU + county: București + locality: Sector 2 + lat: 44.442215 + lng: 26.130355 + risk_category: RS1 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.241318+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1990 + fields: + parent_id: null + status: 1 + street_number: 48 (corp A) + address: Soseaua NICOLAE TITULESCU + county: București + locality: Sector 1 + lat: 44.452048 + lng: 26.077003 + risk_category: N/A + height_regime: S+P+2 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.456690+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1991 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Soseaua NICOLAE TITULESCU + county: București + locality: Sector 1 + lat: 44.452027 + lng: 26.078519 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.585329+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1992 + fields: + parent_id: null + status: 1 + street_number: 80 (bloc 1A) + address: Soseaua NICOLAE TITULESCU + county: București + locality: Sector 1 + lat: 44.452552 + lng: 26.072222 + risk_category: N/A + height_regime: S+P+12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.695332+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1993 + fields: + parent_id: null + status: 1 + street_number: 88 (corp A) + address: Soseaua NICOLAE TITULESCU + county: București + locality: Sector 1 + lat: 44.452049 + lng: 26.07692 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:45.848562+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1994 + fields: + parent_id: null + status: 1 + street_number: 49 (bloc 7) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.396316 + lng: 26.114827 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.043455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1995 + fields: + parent_id: null + status: 1 + street_number: 55 (bloc 2) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.395981 + lng: 26.115699 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 144 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8613.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.228014+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1996 + fields: + parent_id: null + status: 1 + street_number: 57 (bloc 8) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.395915 + lng: 26.115873 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.383033+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1997 + fields: + parent_id: null + status: 1 + street_number: 65 (bloc 9) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.395595 + lng: 26.116705 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.531426+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1998 + fields: + parent_id: null + status: 1 + street_number: 69 (bloc 4) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.395429 + lng: 26.117136 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 144 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8613.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.670965+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 1999 + fields: + parent_id: null + status: 1 + street_number: 81 (bloc 6) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.394696 + lng: 26.119109 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 144 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8613.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.800040+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2000 + fields: + parent_id: null + status: 1 + street_number: 83 (bloc 12) + address: Soseaua OLTENITEI + county: București + locality: Sector 4 + lat: 44.3955086 + lng: 26.1200203 + risk_category: U3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Gheorghe SARBU + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1963 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:46.976492+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2001 + fields: + parent_id: null + status: 1 + street_number: 90 (corp A) + address: Soseaua PANDURI (UNIVERSITATEA BUCUREŞTI – Facultatea de Chimie) + county: București + locality: Sector 5 + lat: 44.427583 + lng: 26.066144 + risk_category: U1 + height_regime: Ds+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Constantin FIRŢEA + observations: Încadrare în clasă de risc seismic în anul 2015 + has_warning_panels: null + year_built: 1926 + surface: 383.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:47.161051+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2002 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Soseaua PANDURI + county: București + locality: Sector 5 + lat: 44.424712 + lng: 26.071214 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:47.374031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2003 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Soseaua PANDURI + county: București + locality: Sector 5 + lat: 44.425846 + lng: 26.069189 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:47.645389+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2004 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Soseaua PANDURI + county: București + locality: Sector 5 + lat: 44.426587 + lng: 26.067785 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Anatolie CAZACLIU + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul proprietarilor + (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. + Alexandru BRÂNZEI) + has_warning_panels: null + year_built: 1920 + surface: 473.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:47.776913+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2005 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Soseaua PANDURI + county: București + locality: Sector 5 + lat: 44.426913 + lng: 26.067229 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 602.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:47.909978+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2006 + fields: + parent_id: null + status: 1 + street_number: 144 (bloc 102A) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.443651 + lng: 26.146992 + risk_category: RS3 + height_regime: S+P+10 … 11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1977 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.056686+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2007 + fields: + parent_id: null + status: 1 + street_number: 235 (bloc 67) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.443912 + lng: 26.152146 + risk_category: U2 + height_regime: S+P+14E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 178 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 1551.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.190918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2008 + fields: + parent_id: null + status: 1 + street_number: 237 (bloc 65) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.443653 + lng: 26.153067 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.381547+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2009 + fields: + parent_id: null + status: 1 + street_number: 247 (bloc 54) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.4434376 + lng: 26.1581615 + risk_category: U3 + height_regime: S+P+Mz+18E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 102 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Mihai VOICULESCU + observations: Încadrare în clasă de risc seismic RsIII spre RsIV în anul 2013 + has_warning_panels: null + year_built: 1979 + surface: 15226.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.643912+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2010 + fields: + parent_id: null + status: 1 + street_number: 254 (tronson I+II+III) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.442807 + lng: 26.155832 + risk_category: RS3 + height_regime: S+P+11 … 12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 169 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.816788+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2011 + fields: + parent_id: null + status: 1 + street_number: 285 (bloc 11A) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.4428539 + lng: 26.166707 + risk_category: RS3 + height_regime: S+P+9 … 11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:48.939811+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2012 + fields: + parent_id: null + status: 1 + street_number: 286 (bloc 41) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.44225 + lng: 26.162671 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1972 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.092340+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2013 + fields: + parent_id: null + status: 1 + street_number: 287 (bloc 10) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.4425633 + lng: 26.1695533 + risk_category: U3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 160 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gavril POP + observations: Încadrare în clasă de risc seismic RsIII în anul 2013 (documentaţie + tehnico economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1975 + surface: 1573.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.242879+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2014 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.443718 + lng: 26.149161 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1914 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.385144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2015 + fields: + parent_id: null + status: 1 + street_number: 330 (bloc 31) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.441323 + lng: 26.170751 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.575143+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2016 + fields: + parent_id: null + status: 1 + street_number: 332 (bloc 32) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.441351 + lng: 26.171414 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.824548+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2017 + fields: + parent_id: null + status: 1 + street_number: 334 (bloc 30) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.441158 + lng: 26.171845 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:49.973206+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2018 + fields: + parent_id: null + status: 1 + street_number: 354 (bloc 2) + address: Soseaua PANTELIMON + county: București + locality: Sector 2 + lat: 44.440777 + lng: 26.179456 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TEMELCU. Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 27864.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:50.121414+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2019 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Soseaua PAVEL DIMITRIEVICI KISELEFF + county: București + locality: Sector 1 + lat: 44.465148 + lng: 26.07994 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 1893.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:50.280607+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2020 + fields: + parent_id: null + status: 1 + street_number: 35÷37 + address: Soseaua PAVEL DIMITRIEVICI KISELEFF + county: București + locality: Sector 1 + lat: 44.463447 + lng: 26.079903 + risk_category: RS2 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:50.461327+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2021 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.453211 + lng: 26.107888 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:50.668671+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2022 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.453126 + lng: 26.110653 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:50.927952+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2023 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452697 + lng: 26.104263 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 1782.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.069039+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2024 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.45272 + lng: 26.104481 + risk_category: U2 + height_regime: P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.205842+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2025 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452902 + lng: 26.115649 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 42.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.371078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2026 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452871 + lng: 26.116495 + risk_category: RS1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 114 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 8886.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.535065+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2027 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452755 + lng: 26.117271 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 49 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 343.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.724677+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2028 + fields: + parent_id: null + status: 1 + street_number: 29 (bloc 29, tronson A, sc A+B) + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452624 + lng: 26.118222 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:51.947322+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2029 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc 29, tronson B+C, sc 1, 2 ,3 ,4) + address: Soseaua Stefan cel Mare + county: București + locality: Sector 2 + lat: 44.452356 + lng: 26.119577 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.138961+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2030 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc 29, tronson D- de capăt, scara 5) + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452804 + lng: 26.111683 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 33 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.295097+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2031 + fields: + parent_id: null + status: 1 + street_number: 33 (bloc 30, tronson 2, scara 3) + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.451936 + lng: 26.12101 + risk_category: C + height_regime: S+P+9E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 169 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Marin TEODOR + observations: AC nr.502/46"S"/2016; PVRTL nr.126008/2018 + has_warning_panels: null + year_built: 1963 + surface: 13759.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.438306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2032 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.451358 + lng: 26.122495 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 190 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 13796.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.524415+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2033 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.450968 + lng: 26.12331 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1957 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.656300+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2034 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Soseaua STEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452635 + lng: 26.11098 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:52.845308+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2035 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.452604 + lng: 26.112002 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 3269.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.048211+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2036 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Şoseaua ŞTEFAN CEL MARE + county: București + locality: Sector 2 + lat: 44.453326 + lng: 26.101713 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 134 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 173.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.209335+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2037 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc H1) + address: Soseaua VERGULUI + county: București + locality: Sector 2 + lat: 44.437846 + lng: 26.170737 + risk_category: RS3 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan.MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.359576+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2038 + fields: + parent_id: null + status: 1 + street_number: 13 (bloc H2) + address: Soseaua VERGULUI + county: București + locality: Sector 2 + lat: 44.437779 + lng: 26.170708 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.493873+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2039 + fields: + parent_id: null + status: 1 + street_number: 67 (bloc 15D) + address: Soseaua VERGULUI + county: București + locality: Sector 2 + lat: 44.439825 + lng: 26.181839 + risk_category: U3 + height_regime: S+P+18E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 98 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Vasile BOGDAN + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1977 + surface: 13475.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.679225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2040 + fields: + parent_id: null + status: 1 + street_number: '94' + address: Soseaua VIILOR + county: București + locality: Sector 5 + lat: 44.408069 + lng: 26.091624 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:53.895675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2041 + fields: + parent_id: null + status: 1 + street_number: 95 (bloc 102) + address: Şoseaua VIILOR + county: București + locality: Sector 5 + lat: 44.407931 + lng: 26.091857 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 192 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 12542.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.113999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2042 + fields: + parent_id: null + status: 1 + street_number: '96' + address: Soseaua VIILOR + county: București + locality: Sector 5 + lat: 44.407433 + lng: 26.092617 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: U3 ( Radiată din Lista imobilelor încadrate în clasa de risc seismic + RsI conform Deciziei Civile nr.17/2010) + has_warning_panels: null + year_built: 1926 + surface: 2165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.303485+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2043 + fields: + parent_id: null + status: 1 + street_number: '84' + address: Splaiu INDEPENDENTEI + county: București + locality: Sector 5 + lat: 44.434077 + lng: 26.083079 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.448894+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2044 + fields: + parent_id: null + status: 1 + street_number: 2K (13) + address: Splaiul INDEPENDENŢEI (colț cu Strada NICOLAE TONITZA) + county: București + locality: Sector 3 + lat: 44.430442 + lng: 26.098442 + risk_category: U2 + height_regime: 2S+P+Mz+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ramiro SOFRONIE; Mircea CRIŞAN + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul majorităţii + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Gabriel NICULESCU) + has_warning_panels: null + year_built: 1915 + surface: 11504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.572394+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2045 + fields: + parent_id: null + status: 1 + street_number: 319L + address: Splaiul INDEPENDENTEI (imobil birouri şi servicii “SEMA PARC OFFICE”) + county: București + locality: Sector 6 + lat: 44.4424169 + lng: 26.0437552 + risk_category: U4 + height_regime: Sp+P+2E P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dan CREŢU + observations: Încadrare în clasă de risc seismic în anul 2016, AC nr.800/2014 + AC nr.96/2016 PVRTL nr.76/2016 + has_warning_panels: null + year_built: 1986 + surface: 38109.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.740037+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2046 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Splaiul INDEPENDENTEI + county: București + locality: Sector 5 + lat: 44.433656 + lng: 26.08812 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:54.924932+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2047 + fields: + parent_id: null + status: 1 + street_number: 56B + address: Splaiul INDEPENDENTEI + county: București + locality: Sector 5 + lat: 44.433656 + lng: 26.08812 + risk_category: N/A + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai IONESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:55.191822+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2048 + fields: + parent_id: null + status: 1 + street_number: '58' + address: Splaiul INDEPENDENTEI + county: București + locality: Sector 5 + lat: 44.433688 + lng: 26.087651 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 640.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:55.384007+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2049 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Splaiul UNIRII (imobil birouri Și servicii “STEILMANN VESTICO” S.R.L.) + county: București + locality: Sector 4 + lat: 44.3985957 + lng: 26.1609338 + risk_category: U4 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2018 AC nr. 28.S/1999 + AC nr.214/2000 PVRTL nr.1/2003 + has_warning_panels: null + year_built: 1971 + surface: 2499.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:55.505485+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2050 + fields: + parent_id: null + status: 1 + street_number: 102÷104 + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.417995 + lng: 26.112174 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:55.649664+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2051 + fields: + parent_id: null + status: 1 + street_number: '112' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.4171 + lng: 26.113067 + risk_category: RS2 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:55.867087+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2052 + fields: + parent_id: null + status: 1 + street_number: '209' + address: Splaiul UNIRII + county: București + locality: Sector 3 + lat: 44.40912 + lng: 26.123159 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.125670+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2053 + fields: + parent_id: null + status: 1 + street_number: 2F + address: Splaiul UNIRII + county: București + locality: Sector 3 + lat: 44.429754 + lng: 26.098605 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.325050+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2054 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Splaiul UNIRII + county: București + locality: Sector 3 + lat: 44.4289365 + lng: 26.0987668 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.439242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2055 + fields: + parent_id: null + status: 1 + street_number: '58' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.422334 + lng: 26.109718 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.532048+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2056 + fields: + parent_id: null + status: 1 + street_number: 66÷68 + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.421918 + lng: 26.109882 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1908 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.645112+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2057 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.421025 + lng: 26.1100889 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:56.799271+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2058 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.4203146 + lng: 26.1103792 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 230.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.011798+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2059 + fields: + parent_id: null + status: 1 + street_number: '84' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.420335 + lng: 26.110462 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel PANICOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.298221+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2060 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Splaiul UNIRII + county: București + locality: Sector 3 + lat: 44.3942715 + lng: 26.2090381 + risk_category: RS1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.518642+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2061 + fields: + parent_id: null + status: 1 + street_number: '98' + address: Splaiul UNIRII + county: București + locality: Sector 4 + lat: 44.418321 + lng: 26.111757 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.606989+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2062 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419438 + lng: 26.095194 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1911 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.711666+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2063 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.423151 + lng: 26.095708 + risk_category: RS3 + height_regime: S+P+3E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolai TOPA + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.842249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2064 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.423187 + lng: 26.095824 + risk_category: U2 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:57.999901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2065 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.42292 + lng: 26.095989 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:58.161901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2066 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.422752 + lng: 26.095913 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Octavian MANOIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 754.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:58.375678+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2067 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4250488 + lng: 26.0954468 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:58.621395+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2068 + fields: + parent_id: null + status: 1 + street_number: 27 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.422246 + lng: 26.096006 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:58.830034+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2069 + fields: + parent_id: null + status: 1 + street_number: 34 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421674 + lng: 26.095761 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 120.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:58.967839+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2070 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421743 + lng: 26.095918 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:59.149870+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2071 + fields: + parent_id: null + status: 1 + street_number: 36÷38 + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421452 + lng: 26.095676 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 90.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:59.366982+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2072 + fields: + parent_id: null + status: 1 + street_number: 39 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421483 + lng: 26.095819 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP. Liviu VINTILA LIVIU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 200.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:59.605473+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2073 + fields: + parent_id: null + status: 1 + street_number: 40 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421341 + lng: 26.095633 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 80.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:59.810888+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2074 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421225 + lng: 26.095719 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:45:59.964495+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2075 + fields: + parent_id: null + status: 1 + street_number: 44÷46 + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421119 + lng: 26.095548 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 70.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.117695+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2076 + fields: + parent_id: null + status: 1 + street_number: 45 (corp A+B+C) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.421095 + lng: 26.0956699 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 80.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.284261+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2077 + fields: + parent_id: null + status: 1 + street_number: 49 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.420858 + lng: 26.095581 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.493860+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2078 + fields: + parent_id: null + status: 1 + street_number: 53 (corp A+B+C) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4205381 + lng: 26.0956246 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 60.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.694025+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2079 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.420556 + lng: 26.09547 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 190.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.793187+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2080 + fields: + parent_id: null + status: 1 + street_number: 57 (corp A+B) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.420456 + lng: 26.095433 + risk_category: RS2 + height_regime: S+P; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:00.953703+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2081 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.420355 + lng: 26.095396 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 120.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:01.100019+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2082 + fields: + parent_id: null + status: 1 + street_number: 61 (corp A+B+C) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4203055 + lng: 26.0954418 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 100.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:01.268056+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2083 + fields: + parent_id: null + status: 1 + street_number: 65 (corp A+B+C+D) + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4200565 + lng: 26.0953714 + risk_category: RS3 + height_regime: S+P+1E S+P;S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 180.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:01.448315+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2084 + fields: + parent_id: null + status: 1 + street_number: '67' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419953 + lng: 26.095249 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 291.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:01.647368+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2085 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.424795 + lng: 26.095431 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:01.823746+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2086 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419803 + lng: 26.09519 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.067933+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2087 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419752 + lng: 26.095175 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 190.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.223828+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2088 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419652 + lng: 26.095138 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 260.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.380608+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2089 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.419222 + lng: 26.09497 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 300.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.593925+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2090 + fields: + parent_id: null + status: 1 + street_number: 75A + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4192697 + lng: 26.0952468 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.777546+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2091 + fields: + parent_id: null + status: 1 + street_number: '81' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.4192208 + lng: 26.0949723 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 120.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:02.909307+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2092 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada 11 IUNIE + county: București + locality: Sector 4 + lat: 44.424574 + lng: 26.095426 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 120.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.103453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2093 + fields: + parent_id: null + status: 1 + street_number: 19÷21 (corp A+B) + address: Strada ACADEMIEI (Hotelul “MUNTENIA”) + county: București + locality: Sector 1 + lat: 44.43662 + lng: 26.099201 + risk_category: U1 + height_regime: S+P+Mz+5E S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Ion NEGESCU + observations: Încadrare în clasă de risc seismic în anul 2005 + has_warning_panels: null + year_built: 1935 + surface: 174.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.231396+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2094 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Strada ACADEMIEI (imobil cu destinația de birouri – PRIMĂRIA MUNICIPIULUI + BUCUREŞTI) + county: București + locality: Sector 3 + lat: 44.4364858 + lng: 26.0993881 + risk_category: U1 + height_regime: 2S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1906 + surface: 7162.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.369092+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2095 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ACADEMIEI + county: București + locality: Sector 3 + lat: 44.434135 + lng: 26.099474 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 1385.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.484545+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2096 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada ACADEMIEI + county: București + locality: Sector 1 + lat: 44.436402 + lng: 26.099322 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea IEREMIA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 124.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.635629+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2097 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada ACADEMIEI + county: București + locality: Sector 3 + lat: 44.434317 + lng: 26.099378 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1342.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.799835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2098 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ACADEMIEI + county: București + locality: Sector 3 + lat: 44.434003 + lng: 26.099845 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria DABIJA + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 46.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:03.980542+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2099 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada ACADEMIEI + county: București + locality: Sector 1 + lat: 44.437018 + lng: 26.098948 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 13.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:04.190885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2100 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada ACADEMIEI + county: București + locality: Sector 1 + lat: 44.437137 + lng: 26.098803 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 541.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:04.309325+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2101 + fields: + parent_id: null + status: 1 + street_number: 4÷6 + address: Strada ACADEMIEI + county: București + locality: Sector 3 + lat: 44.434355 + lng: 26.099773 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 74 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Stelian PICULESCU + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1960 + surface: 4464.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:04.455598+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2102 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada ADY ENDRE + county: București + locality: Sector 1 + lat: 44.460988 + lng: 26.079213 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1951 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:04.623516+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2103 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ADY ENDRE + county: București + locality: Sector 1 + lat: 44.460366 + lng: 26.07873 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 419.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:04.838545+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2104 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.4379 + lng: 26.132175 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 986.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.012823+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2105 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.437395 + lng: 26.132246 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1909 + surface: 765.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.263643+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2106 + fields: + parent_id: null + status: 1 + street_number: 74 (corp A) + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.435766 + lng: 26.132583 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 12.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.420808+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2107 + fields: + parent_id: null + status: 1 + street_number: 74 (corp B) + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.4356286 + lng: 26.1326288 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 148.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.573641+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2108 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.435889 + lng: 26.132683 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.752394+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2109 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.435519 + lng: 26.132636 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 626.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:05.981276+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2110 + fields: + parent_id: null + status: 1 + street_number: '86' + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.434509 + lng: 26.132642 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 624.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:06.205587+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2111 + fields: + parent_id: null + status: 1 + street_number: 93 (corp A) + address: Strada AGRICULTORI + county: București + locality: Sector 2 + lat: 44.434596 + lng: 26.132825 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 305.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:06.375195+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2112 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada ALECU RUSSO + county: București + locality: Sector 2 + lat: 44.446204 + lng: 26.109457 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 905.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:06.485912+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2113 + fields: + parent_id: null + status: 1 + street_number: 24÷26 + address: Strada ALECU RUSSO + county: București + locality: Sector 2 + lat: 44.447025 + lng: 26.108338 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 1211.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:06.637271+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2114 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B+C) + address: Strada ALECU RUSSO + county: București + locality: Sector 2 + lat: 44.4462695 + lng: 26.1094625 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 198.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:06.814093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2115 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ALECU RUSSO + county: București + locality: Sector 2 + lat: 44.446386 + lng: 26.108852 + risk_category: RS2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 541.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.011640+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2116 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ALEXANDRU BALASANU + county: București + locality: Sector 4 + lat: 44.418309 + lng: 26.106311 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 297.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.260988+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2117 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ALEXANDRU BALASANU + county: București + locality: Sector 4 + lat: 44.418188 + lng: 26.106086 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.495870+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2118 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B) + address: Strada ALEXANDRU BALASANU + county: București + locality: Sector 4 + lat: 44.418155 + lng: 26.105842 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.620234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2119 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ALEXANDRU BELDIMAN + county: București + locality: Sector 5 + lat: 44.43425 + lng: 26.097588 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 82 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 962.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.761780+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2120 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada ALEXANDRU CONSTANTINESCU + county: București + locality: Sector 1 + lat: 44.467547 + lng: 26.072508 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 669.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:07.929271+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2121 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada ALEXANDRU DEPĂRĂŢEANU + county: București + locality: Sector 1 + lat: 44.449997 + lng: 26.073578 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 356.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:08.099679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2122 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ALEXANDRU DEPĂRĂŢEANU + county: București + locality: Sector 1 + lat: 44.449906 + lng: 26.0736761 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 239.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:08.322404+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2123 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ALEXANDRU DEPARATEANU + county: București + locality: Sector 1 + lat: 44.451046 + lng: 26.074928 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 367.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:08.592263+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2124 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.442154 + lng: 26.110132 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 580.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:08.739828+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2125 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.441387 + lng: 26.110781 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:08.896824+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2126 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.442875 + lng: 26.109374 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 763.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:09.061031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2127 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.443337 + lng: 26.108911 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:09.252705+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2128 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.441771 + lng: 26.110457 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 434.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:09.467435+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2129 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada ALEXANDRU DONICI + county: București + locality: Sector 2 + lat: 44.443141 + lng: 26.109072 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 784.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:09.707855+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2130 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc 29bis) + address: Strada ALEXANDRU IPSILANTI + county: București + locality: Sector 2 + lat: 44.439078 + lng: 26.175998 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 6644.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:09.846557+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2131 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ALEXANDRU MACEDONSKI + county: București + locality: Sector 1 + lat: 44.447572 + lng: 26.098402 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 830.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.004962+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2132 + fields: + parent_id: null + status: 1 + street_number: 5A + address: Strada ALEXANDRU PAULESCU + county: București + locality: Sector 2 + lat: 44.433049 + lng: 26.128656 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 204.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.165244+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2133 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ALEXANDRU PHILIPPIDE + county: București + locality: Sector 2 + lat: 44.447118 + lng: 26.10331 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.328275+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2134 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ALEXANDRU RADOVICI + county: București + locality: Sector 2 + lat: 44.449455 + lng: 26.118825 + risk_category: N/A + height_regime: S+D+P+3E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.509350+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2135 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada ALEXANDRU ROMANO + county: București + locality: Sector 2 + lat: 44.435259 + lng: 26.115367 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.767034+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2136 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada ALEXANDRU SIHLEANU + county: București + locality: Sector 3 + lat: 44.432515 + lng: 26.11381 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:10.963447+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2137 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ALEXANDRU XENOPOL + county: București + locality: Sector 1 + lat: 44.443122 + lng: 26.102327 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 37 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 4259.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:11.087010+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2138 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ALEXANDRU XENOPOL + county: București + locality: Sector 1 + lat: 44.44331 + lng: 26.10257 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 796.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:11.205946+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2139 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc A6) + address: Strada ALIORULUI + county: București + locality: Sector 4 + lat: 44.381452 + lng: 26.121607 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:11.409014+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2140 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ANASTASIE SIMU + county: București + locality: Sector 1 + lat: 44.441491 + lng: 26.099856 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Şerban PĂUNESCU + observations: Imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Valentin GEORGESCU. S-a radiat mențiunea "colț cu Bulevardul GHEORGHE + MAGHERU nr.5" conform Deciziei civile nr.6895/2018 a Curții de Apel BucureȘti. + has_warning_panels: null + year_built: 1935 + surface: 57.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:11.659351+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2141 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ANGHEL SALIGNY + county: București + locality: Sector 5 + lat: 44.434047 + lng: 26.093865 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Teodor NICOLAU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:11.890373+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2142 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ANTON PANN + county: București + locality: Sector 3 + lat: 44.430384 + lng: 26.111398 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 186.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:12.056133+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2143 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada APOLODOR + county: București + locality: Sector 5 + lat: 44.428241 + lng: 26.094664 + risk_category: N/A + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 161.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:12.187332+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2144 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada ARCULUI + county: București + locality: Sector 2 + lat: 44.438301 + lng: 26.110378 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1355.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:12.321222+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2145 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ARCULUI + county: București + locality: Sector 2 + lat: 44.438375 + lng: 26.110493 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 831.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:12.569123+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2146 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada ARCULUI + county: București + locality: Sector 2 + lat: 44.438477 + lng: 26.111517 + risk_category: U2 + height_regime: S+Ds+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Panaite MAZILU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1935 + surface: 19.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:12.785059+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2147 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ARCULUI + county: București + locality: Sector 2 + lat: 44.437878 + lng: 26.109801 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 23 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.000561+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2148 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada ARCULUI + county: București + locality: Sector 2 + lat: 44.43783 + lng: 26.109912 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Niculae NEER + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 929.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.125551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2149 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada ARDELENI + county: București + locality: Sector 2 + lat: 44.446281 + lng: 26.120023 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 447.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.228155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2150 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ARDELENI + county: București + locality: Sector 2 + lat: 44.446615 + lng: 26.119664 + risk_category: U2 + height_regime: Ds+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Şerban PĂUNESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul majorităţii + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P Adina SIMION) + has_warning_panels: null + year_built: 1940 + surface: 890.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.376567+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2151 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada ARDELENI + county: București + locality: Sector 2 + lat: 44.447809 + lng: 26.118084 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 410.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.532055+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2152 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada ARGENTINA + county: București + locality: Sector 1 + lat: 44.45396 + lng: 26.089388 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 949.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.693521+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2153 + fields: + parent_id: null + status: 1 + street_number: 10 (bloc M3D) + address: Strada ARINII DORNEI + county: București + locality: Sector 6 + lat: 44.43615 + lng: 26.040755 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mariana SUCEVEANU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:13.833937+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2154 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc 28) + address: Strada ARINII DORNEI + county: București + locality: Sector 6 + lat: 44.43554 + lng: 26.041568 + risk_category: N/A + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.016784+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2155 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada ARISTIDE PASCAL + county: București + locality: Sector 3 + lat: 44.421016 + lng: 26.129508 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 113.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.162878+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2156 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada ARISTIDE PASCAL + county: București + locality: Sector 3 + lat: 44.421595 + lng: 26.129941 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.290025+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2157 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.4374162 + lng: 26.1114506 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 28.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.458919+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2158 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.437682 + lng: 26.111324 + risk_category: U2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 178.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.586878+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2159 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.437782 + lng: 26.111381 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 178.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.727121+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2160 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.43805 + lng: 26.111394 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 710.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:14.874160+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2161 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.437883 + lng: 26.111437 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 2144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.037634+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2162 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.438282 + lng: 26.111526 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.184308+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2163 + fields: + parent_id: null + status: 1 + street_number: 17A + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.438282 + lng: 26.111526 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.315465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2164 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.439166 + lng: 26.1121161 + risk_category: U1 + height_regime: P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mariana STOENESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 3945.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.441563+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2165 + fields: + parent_id: null + status: 1 + street_number: 28A + address: Strada ARMENEASCA + county: București + locality: Sector 2 + lat: 44.439154 + lng: 26.112023 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dinu CIOBOTARIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 3945.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.579141+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2166 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada ARMENEASCĂ + county: București + locality: Sector 2 + lat: 44.441542 + lng: 26.111534 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1859.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.732885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2167 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ARMONIEI + county: București + locality: Sector 2 + lat: 44.44384 + lng: 26.114759 + risk_category: U3 + height_regime: S+P+Hp+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Mihai URSĂCHESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1900 + surface: 340.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:15.928392+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2168 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ARMONIEI + county: București + locality: Sector 2 + lat: 44.443355 + lng: 26.114967 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.163141+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2169 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada ARMONIEI + county: București + locality: Sector 2 + lat: 44.443653 + lng: 26.114905 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.357015+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2170 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ARON FLORIAN + county: București + locality: Sector 2 + lat: 44.44018 + lng: 26.107451 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.458679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2171 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ATENA + county: București + locality: Sector 1 + lat: 44.458543 + lng: 26.091628 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1943 + surface: 1836.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.544031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2172 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada AURA BUZESCU + county: București + locality: Sector 2 + lat: 44.439929 + lng: 26.146024 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 272.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.669049+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2173 + fields: + parent_id: null + status: 1 + street_number: '102' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.449745 + lng: 26.104565 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:16.821459+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2174 + fields: + parent_id: null + status: 1 + street_number: '146' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.451653 + lng: 26.103902 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 537.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.034131+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2175 + fields: + parent_id: null + status: 1 + street_number: '148' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.451792 + lng: 26.10386 + risk_category: U4 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Dan CĂPĂŢÂNĂ + observations: Încadrare în clasă de risc seismic în anul 2009 + has_warning_panels: null + year_built: 1938 + surface: 525.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.219903+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2176 + fields: + parent_id: null + status: 1 + street_number: '154' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.452472 + lng: 26.103665 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.417539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2177 + fields: + parent_id: null + status: 1 + street_number: '166' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.452694 + lng: 26.103736 + risk_category: N/A + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.589909+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2178 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.445863 + lng: 26.106339 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 192.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.733343+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2179 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.446372 + lng: 26.106196 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1218.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:17.888614+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2180 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.446025 + lng: 26.106155 + risk_category: U2 + height_regime: P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1950 + surface: 541.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.089784+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2181 + fields: + parent_id: null + status: 1 + street_number: 48 (corp B) + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.446771 + lng: 26.106176 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.308678+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2182 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.447153 + lng: 26.105957 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 990.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.440838+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2183 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Strada AUREL VLAICU + county: București + locality: Sector 2 + lat: 44.447579 + lng: 26.105977 + risk_category: U3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.666527+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2184 + fields: + parent_id: null + status: 1 + street_number: 12C + address: Strada AUSTRULUI + county: București + locality: Sector 2 + lat: 44.437901 + lng: 26.122556 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 257.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.809513+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2185 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada AUSTRULUI + county: București + locality: Sector 2 + lat: 44.437755 + lng: 26.122591 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 560.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:18.985551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2186 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada AUSTRULUI + county: București + locality: Sector 2 + lat: 44.436907 + lng: 26.122799 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:19.216709+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2187 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B) + address: Strada AVALANSEI + county: București + locality: Sector 4 + lat: 44.417234 + lng: 26.111755 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:19.387723+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2188 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada AVALANŞEI + county: București + locality: Sector 4 + lat: 44.416989 + lng: 26.1117189 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 234.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:19.542482+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2189 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A+B+C) + address: Strada AVALANŞEI + county: București + locality: Sector 4 + lat: 44.41811 + lng: 26.111528 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:19.744204+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2190 + fields: + parent_id: null + status: 1 + street_number: 7÷7bis + address: Strada AVALANŞEI + county: București + locality: Sector 4 + lat: 44.4177075 + lng: 26.1116217 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 636.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:19.881209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2191 + fields: + parent_id: null + status: 1 + street_number: 14 (corp A+B+C) + address: Strada AVRAM IANCU + county: București + locality: Sector 2 + lat: 44.437661 + lng: 26.118294 + risk_category: RS1 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 254.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.036142+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2192 + fields: + parent_id: null + status: 1 + street_number: 21÷31 (bloc U2) + address: Strada AVRIG + county: București + locality: Sector 2 + lat: 44.445121 + lng: 26.131223 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.201875+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2193 + fields: + parent_id: null + status: 1 + street_number: 21 (bloc G11) + address: Strada BABA NOVAC + county: București + locality: Sector 3 + lat: 44.427309 + lng: 26.151996 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.415269+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2194 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Strada BĂCANI + county: București + locality: Sector 3 + lat: 44.432229 + lng: 26.102797 + risk_category: U1 + height_regime: S+P+Mz+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1883 + surface: 35.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.557344+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2195 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada BĂCANI + county: București + locality: Sector 3 + lat: 44.432229 + lng: 26.102797 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 534.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.773504+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2196 + fields: + parent_id: null + status: 1 + street_number: 11 (corp A) + address: Strada BADEA CÂRŢAN + county: București + locality: Sector 2 + lat: 44.451035 + lng: 26.114769 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:20.953852+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2197 + fields: + parent_id: null + status: 1 + street_number: 11 (corp B) + address: Strada BADEA CÂRŢAN + county: București + locality: Sector 2 + lat: 44.450903 + lng: 26.112657 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 84.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:21.109421+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2198 + fields: + parent_id: null + status: 1 + street_number: 60 (corp A+B+C) + address: Strada BADEA CÂRŢAN + county: București + locality: Sector 2 + lat: 44.452226 + lng: 26.11721 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:21.295354+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2199 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 448.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:21.451593+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2200 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1883 + surface: 547.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:21.605432+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2201 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: 44.430255 + lng: 26.105596 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 156.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:21.881242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2202 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: 44.430593 + lng: 26.105789 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CIOCULESCU + observations: '' + has_warning_panels: null + year_built: 1897 + surface: 1217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.046881+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2203 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: 44.430426 + lng: 26.105773 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 971.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.193104+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2204 + fields: + parent_id: null + status: 1 + street_number: 8 (corp A+B) + address: Strada BAIA DE FIER + county: București + locality: Sector 3 + lat: 44.430596 + lng: 26.10595 + risk_category: RS1 + height_regime: S+P+2E+Pod; S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 877.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.357224+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2205 + fields: + parent_id: null + status: 1 + street_number: 19 (bloc D9) + address: Strada BAICULEŞTI + county: București + locality: Sector 1 + lat: 44.481847 + lng: 26.055194 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.535958+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2206 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 61) + address: Strada BALADEI + county: București + locality: Sector 4 + lat: 44.4096811 + lng: 26.11483 + risk_category: U3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1980 + surface: 7263.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.685336+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2207 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 73) + address: Strada BALADEI + county: București + locality: Sector 4 + lat: 44.4096901 + lng: 26.1156658 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1984 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:22.854795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2208 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A) + address: Strada BĂLCEŞTI (“BOIER HOSTEL BUCHAREST” S.R.L.) + county: București + locality: Sector 3 + lat: 44.4311244 + lng: 26.1077699 + risk_category: U2 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Nicolae GHIŢĂ + observations: Încadrare în clasă de risc seismic în anul 2016 + declaraţiile autentificate + notarial ale proprietarului şi expertului tehnic + has_warning_panels: null + year_built: 1917 + surface: 634.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.034626+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2209 + fields: + parent_id: null + status: 1 + street_number: 9 (corp B - tronson I) + address: Strada BĂLCEŞTI (“BOIER HOSTEL BUCHAREST” S.R.L.) + county: București + locality: Sector 3 + lat: 44.4311244 + lng: 26.1077699 + risk_category: U3 + height_regime: Sparţial+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Nicolae GHIŢĂ + observations: Încadrare în clasă de risc seismic în anul 2016 + declaraţiile autentificate + notarial ale proprietarului şi expertului tehnic + has_warning_panels: null + year_built: 1917 + surface: 105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.188581+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2210 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada BALDOVIN PÂRCĂLABUL + county: București + locality: Sector 1 + lat: 44.443105 + lng: 26.079366 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 462.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.353555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2211 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada BALDOVIN PÂRCĂLABUL + county: București + locality: Sector 1 + lat: 44.443241 + lng: 26.079339 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 788.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.522953+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2212 + fields: + parent_id: null + status: 1 + street_number: 13÷15 + address: Strada BALTAGULUI + county: București + locality: Sector 5 + lat: 44.4221119 + lng: 26.0610047 + risk_category: U2 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1960 + surface: 183.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.663316+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2213 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada BALTAGULUI + county: București + locality: Sector 5 + lat: 44.422104 + lng: 26.0616664 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Bogdan GULEAC + observations: Reîncadrare în clasă de risc seismic în anul 2018 (imobilul a fost + încadrat iniţial în RsII de expertul tehnic atestat M.D.R.A.P. Dan POPESCU) + has_warning_panels: null + year_built: 1960 + surface: 915.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:23.845378+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2214 + fields: + parent_id: null + status: 1 + street_number: 2bis + address: Strada BANAT + county: București + locality: Sector 1 + lat: 44.44685 + lng: 26.070376 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 365.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.071679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2215 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada BĂNIEI (fosta Strada SFÂNTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: 44.432986 + lng: 26.103612 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Niculae TEODOR + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1935 + surface: 1908.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.221632+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2216 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada BANIEI (fosta Strada SFANTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1904 + surface: 216.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.357618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2217 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada BANIEI (fosta Strada SFANTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 620.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.513768+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2218 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada BANIEI (fosta Strada SFANTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 312.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.668411+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2219 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada BANIEI (fosta Strada SFANTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 287.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:24.869108+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2220 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada BANIEI (fosta Strada SFANTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: 44.4314415 + lng: 26.1032968 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: AC nr.40/1026788/2012 PVRLT nr.3/2014 + has_warning_panels: null + year_built: 1920 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.081958+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2221 + fields: + parent_id: null + status: 1 + street_number: 3A + address: Strada BANULUI + county: București + locality: Sector 1 + lat: 44.442822 + lng: 26.091138 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2114.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.295104+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2222 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.430846 + lng: 26.104051 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 154.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.430078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2223 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.4303182 + lng: 26.1048776 + risk_category: C + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: AC nr.510/2005 PVRTL nr.361/2006 + has_warning_panels: null + year_built: 1880 + surface: 1273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.578589+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2224 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.430405 + lng: 26.104705 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 2322.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.704428+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2225 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.430223 + lng: 26.104977 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 666.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:25.896001+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2226 + fields: + parent_id: null + status: 1 + street_number: 42B + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.430039 + lng: 26.10519 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 266.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.122295+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2227 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada BĂRĂŢIEI + county: București + locality: Sector 3 + lat: 44.42998 + lng: 26.105367 + risk_category: U1 + height_regime: S+P+Mz+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 596.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.356122+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2228 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Strada BĂRĂTIEI + county: București + locality: Sector 3 + lat: 44.4299594 + lng: 26.1055065 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: Încadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1824 + surface: 360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.465600+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2229 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada BARBU ISCOVESCU + county: București + locality: Sector 1 + lat: 44.46665 + lng: 26.088585 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 572.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.562218+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2230 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada BARBU ISCOVESCU + county: București + locality: Sector 1 + lat: 44.466294 + lng: 26.089356 + risk_category: RS1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 730.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.680145+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2231 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada BARBU ISCOVESCU + county: București + locality: Sector 1 + lat: 44.466626 + lng: 26.088986 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 510.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.805213+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2232 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada BARBU MUMULEANU + county: București + locality: Sector 2 + lat: 44.452077 + lng: 26.106519 + risk_category: C + height_regime: Ds+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: PVRTL nr.65177/2009 + has_warning_panels: null + year_built: 1934 + surface: 431.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:26.971693+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2233 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada BARBU MUMULEANU + county: București + locality: Sector 2 + lat: 44.452077 + lng: 26.106519 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 106.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:27.181066+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2234 + fields: + parent_id: null + status: 1 + street_number: 2C (bloc 33C) + address: Strada BARBU ŞTEFĂNESCU DELAVRANCEA + county: București + locality: Sector 1 + lat: 44.456472 + lng: 26.080931 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 236.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:27.432984+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2235 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada BARBU VACARESCU + county: București + locality: Sector 2 + lat: 44.456608 + lng: 26.106277 + risk_category: N/A + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:27.588234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2236 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada BATIŞTE (Sediul “ARCUB”; Restaurantul “BUREBISTA”) + county: București + locality: Sector 2 + lat: 44.438637 + lng: 26.104278 + risk_category: U1 + height_regime: 2S+Ds+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Tudor ANDRIŢOIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 3526.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:27.715655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2237 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.438084 + lng: 26.102941 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 5532.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:27.845686+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2238 + fields: + parent_id: null + status: 1 + street_number: 16A + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.438598 + lng: 26.104431 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.040777+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2239 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.439272 + lng: 26.105659 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 850.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.276927+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2240 + fields: + parent_id: null + status: 1 + street_number: 28A + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.439422 + lng: 26.106754 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 1187.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.493683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2241 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.439701 + lng: 26.107294 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Barbu VIERESCU + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1946 + surface: 3725.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.662618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2242 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.437664 + lng: 26.101979 + risk_category: U1 + height_regime: 2S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 365.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.760169+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2243 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada BATIŞTE + county: București + locality: Sector 2 + lat: 44.437799 + lng: 26.102377 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolaie CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 2299.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:28.887832+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2244 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada BENJAMIN FRANKLIN + county: București + locality: Sector 1 + lat: 44.441231 + lng: 26.097842 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 577.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.060608+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2245 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada BENJAMIN FRANKLIN + county: București + locality: Sector 1 + lat: 44.441389 + lng: 26.097934 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1842.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.239138+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2246 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada BENJAMIN FRANKLIN + county: București + locality: Sector 1 + lat: 44.441653 + lng: 26.098458 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 1574.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.457622+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2247 + fields: + parent_id: null + status: 1 + street_number: 12 (corp C2 fost corp B) + address: Strada BERZEI + county: București + locality: Sector Sector 1 + lat: 44.4378123 + lng: 26.082984 + risk_category: C + height_regime: Sp+Dsp+Pp+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: AC nr.421/985688/1066878/2012 + nr.45/1211611/2014, PVRTL nr.1/2016 + has_warning_panels: null + year_built: 2016 + surface: 304.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.643397+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2248 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.4371648 + lng: 26.0832514 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 909.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.765911+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2249 + fields: + parent_id: null + status: 1 + street_number: 42÷46 + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.440764 + lng: 26.081383 + risk_category: RS1 + height_regime: S+P+Ma;S+P+2E; S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 2504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:29.905826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2250 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A+B) + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.4376359 + lng: 26.0827379 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 1202.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:30.096683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2251 + fields: + parent_id: null + status: 1 + street_number: 50bis + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.442697 + lng: 26.081059 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1333.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:30.377345+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2252 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.441488 + lng: 26.081025 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 467.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:30.593383+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2253 + fields: + parent_id: null + status: 1 + street_number: 64 (corp A+B) + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.44226 + lng: 26.081015 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 300.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:30.789525+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2254 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.442611 + lng: 26.081088 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 890.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:30.874644+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2255 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.442521 + lng: 26.080945 + risk_category: RS1 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 150.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.003383+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2256 + fields: + parent_id: null + status: 1 + street_number: '83' + address: Strada BERZEI + county: București + locality: Sector 1 + lat: 44.442741 + lng: 26.080986 + risk_category: RS1 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 343.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.146660+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2257 + fields: + parent_id: null + status: 1 + street_number: 18÷20 (corp A+B+C) + address: Strada BIBESCU VODĂ + county: București + locality: Sector 4 + lat: 44.425574 + lng: 26.10161 + risk_category: U2 + height_regime: S+P+5E+Ma S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 41 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 4874.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.332441+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2258 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada BIBESCU VODĂ + county: București + locality: Sector 4 + lat: 44.425344 + lng: 26.102337 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1248.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.535540+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2259 + fields: + parent_id: null + status: 1 + street_number: 24 (corp A) + address: Strada BIBESCU VODĂ + county: București + locality: Sector 4 + lat: 44.4253311 + lng: 26.1019728 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian VINTILA. Liviu POPP + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 147.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.709658+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2260 + fields: + parent_id: null + status: 1 + street_number: 24 (corp B) + address: Strada BIBESCU VODĂ + county: București + locality: Sector 4 + lat: 44.42495 + lng: 26.1027901 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2018. + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:31.890053+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2261 + fields: + parent_id: null + status: 1 + street_number: 2÷4 (136) + address: Strada BISERICA AMZEI (colț cu Calea VICTORIEI) + county: București + locality: Sector 1 + lat: 44.44424829 + lng: 26.09259574 + risk_category: U2 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Maria DARIE + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.034004+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2262 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada BISERICA AMZEI + county: București + locality: Sector 1 + lat: 44.445746 + lng: 26.096314 + risk_category: U2 + height_regime: S+P+Mz+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Maria DARIE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 38.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.181167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2263 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada BISERICA AMZEI + county: București + locality: Sector 1 + lat: 44.444536 + lng: 26.093199 + risk_category: U1 + height_regime: P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 281.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.351928+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2264 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada BISERICA ENEI + county: București + locality: Sector 1 + lat: 44.436164 + lng: 26.10133 + risk_category: U1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2849.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.550305+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2265 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 34) + address: Strada BISERICA MARCUŢA + county: București + locality: Sector 2 + lat: 44.442623 + lng: 26.172168 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.780755+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2266 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 35B) + address: Strada BISERICA MARCUŢA + county: București + locality: Sector 2 + lat: 44.44318 + lng: 26.171661 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1971 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:32.929008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2267 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 37) + address: Strada BISERICA MARCUŢA + county: București + locality: Sector 2 + lat: 44.443887 + lng: 26.171283 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.074691+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2268 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Strada BITOLIA + county: București + locality: Sector 1 + lat: 44.460777 + lng: 26.09814 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 566.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.204251+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2269 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada BITOLIA + county: București + locality: Sector 1 + lat: 44.460123 + lng: 26.095225 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 572.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.353542+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2270 + fields: + parent_id: null + status: 1 + street_number: 14 (3 corpuri principale + 1 corp secundar) + address: Strada BLĂNARI („CLUB A”, „GODOT CAFÉ –TEATRU”) + county: București + locality: Sector 3 + lat: 44.4325617 + lng: 26.1018392 + risk_category: U1 + height_regime: S=P++4E+1E retars S+P=1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Ioan Mihai PAUL + observations: Reîncadrare în clasă de risc seismic în anul 2018 (Înițial imobilul + a fost încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Mircea + CONDRUŢ, ulterior a fost reîncadrat în anul 2016 – pentru o perioadă de 2 ani + – de expertul tehnic dl. Ing. I + has_warning_panels: null + year_built: 1937 + surface: 2645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.491114+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2271 + fields: + parent_id: null + status: 1 + street_number: 3 (3) + address: Strada BLĂNARI (colț cu Strada BĂCANI) + county: București + locality: Sector 3 + lat: 44.4322949 + lng: 26.1025759 + risk_category: U1 + height_regime: S+P+Mz+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1883 + surface: 35.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.661584+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2272 + fields: + parent_id: null + status: 1 + street_number: 21 (43) + address: Strada BLĂNARI (colț cu Strada LIPSCANI) + county: București + locality: Sector 3 + lat: 44.432498 + lng: 26.102116 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Dan POPESCU + observations: AC nr.72/862804/2009 PVRTL nr.958521/2010 + has_warning_panels: null + year_built: 1880 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.813179+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2273 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.432673 + lng: 26.102681 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 764.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:33.939869+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2274 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.4321979 + lng: 26.1018716 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 238.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.090551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2275 + fields: + parent_id: null + status: 1 + street_number: 12 (corp A+C) + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.432498 + lng: 26.102116 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 159.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.240066+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2276 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.4321745 + lng: 26.1014194 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.394089+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2277 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.432742 + lng: 26.102927 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1865 + surface: 758.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.569355+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2278 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.432689 + lng: 26.102755 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1884 + surface: 338.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.710391+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2279 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada BLĂNARI + county: București + locality: Sector 3 + lat: 44.43245 + lng: 26.101978 + risk_category: U3 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSĂCHESCU + observations: Reîncadrare în clasa de risc seismic în anul 2017 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Laurențiu SPOIALĂ) + has_warning_panels: null + year_built: 1880 + surface: 424.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:34.905322+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2280 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada BOCŞA + county: București + locality: Sector 2 + lat: 44.44035 + lng: 26.110711 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 2875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.058970+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2281 + fields: + parent_id: null + status: 1 + street_number: 3A÷3B + address: Strada BOTEANU + county: București + locality: Sector 1 + lat: 44.439608 + lng: 26.098439 + risk_category: U1 + height_regime: S+P+8E+Ma S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN Dan GHIOCEL. Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 10593.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.194819+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2282 + fields: + parent_id: null + status: 1 + street_number: 19 (bloc OD5) + address: Strada BRAŞOV + county: București + locality: Sector 6 + lat: 44.4237172 + lng: 26.0364943 + risk_category: U3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 216 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Vasile BOGDAN + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1965 + surface: 15.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.331038+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2283 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Strada BRAZILIA + county: București + locality: Sector 1 + lat: 44.4572025 + lng: 26.0955479 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 810.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.475283+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2284 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B+C+D+E) + address: Strada BUCUR + county: București + locality: Sector 4 + lat: 44.422197 + lng: 26.108465 + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 440.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.655893+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2285 + fields: + parent_id: null + status: 1 + street_number: 17 (corp A+B) + address: Strada BUCUR + county: București + locality: Sector 4 + lat: 44.4223048 + lng: 26.1083546 + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 260.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:35.902503+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2286 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada BUCUR + county: București + locality: Sector 4 + lat: 44.420912 + lng: 26.106845 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 648.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.080436+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2287 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada BUCUR + county: București + locality: Sector 4 + lat: 44.42096 + lng: 26.107325 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1907 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.289108+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2288 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada BURGHELEA + county: București + locality: Sector 2 + lat: 44.433879 + lng: 26.119082 + risk_category: RS2 + height_regime: S+P+Mz+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1662.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.417444+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2289 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada BUSOLEI + county: București + locality: Sector 2 + lat: 44.449868 + lng: 26.113048 + risk_category: C + height_regime: Dp+P+2E+1Eretras + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: AC nr.740/54”B”/2013 AC nr.751/55”B”/2013 PVRTLnr.23005/2015 + has_warning_panels: null + year_built: 1900 + surface: 204.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.525764+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2290 + fields: + parent_id: null + status: 1 + street_number: 15C + address: Strada BUZEŞTI + county: București + locality: Sector 1 + lat: 44.44672 + lng: 26.081762 + risk_category: RS2 + height_regime: S+P+3E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 510.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.655251+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2291 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada BUZEŞTI + county: București + locality: Sector 1 + lat: 44.447237 + lng: 26.081961 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:36.842243+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2292 + fields: + parent_id: null + status: 1 + street_number: 32A + address: Strada BUZEŞTI + county: București + locality: Sector 1 + lat: 44.447663 + lng: 26.082177 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 434.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.032848+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2293 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada BUZEŞTI + county: București + locality: Sector 1 + lat: 44.448725 + lng: 26.082902 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Vladimir AMBROZIE + observations: Încadrare în clasă de risc seismic în anul 2007 + has_warning_panels: null + year_built: null + surface: 896.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.214610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2294 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada C. A. ROSETTI + county: București + locality: Sector 1 + lat: 44.440394 + lng: 26.098472 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 16.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.425209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2295 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441065 + lng: 26.101148 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.579641+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2296 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.44104 + lng: 26.101383 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 2472.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.753836+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2297 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.44149 + lng: 26.101903 + risk_category: C + height_regime: S+P+8E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN; Dragoş BADEA + observations: PVRTL nr.438/2007 + has_warning_panels: null + year_built: 1933 + surface: 413.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:37.944149+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2298 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441403 + lng: 26.102318 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 735.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.122203+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2299 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441179 + lng: 26.103595 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Nicolae TUDOSE + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1934 + surface: 1975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.300408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2300 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441378 + lng: 26.104553 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.477273+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2301 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.44145 + lng: 26.10476 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.606182+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2302 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441523 + lng: 26.104967 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 780.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.744618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2303 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441458 + lng: 26.104497 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 780.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:38.895849+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2304 + fields: + parent_id: null + status: 1 + street_number: 43A + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.441711 + lng: 26.104899 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 790.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:39.090436+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2305 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada C. A. ROSETTI + county: București + locality: Sector 2 + lat: 44.4415856 + lng: 26.105181 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: PVRTL nr.7875/2004 + has_warning_panels: null + year_built: 1933 + surface: 13.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:39.273959+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2306 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.447361 + lng: 26.096542 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1916 + surface: 224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:39.485126+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2307 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.448439 + lng: 26.09655 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1377.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:39.702528+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2308 + fields: + parent_id: null + status: 1 + street_number: 19A + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.449046 + lng: 26.096362 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Constantin RÂCA + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1935 + surface: 1665.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:39.870506+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2309 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.450796 + lng: 26.095725 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 1338.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.087739+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2310 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.447754 + lng: 26.096499 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 41 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 3457.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.260343+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2311 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.451439 + lng: 26.095446 + risk_category: RS3 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 642.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.508840+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2312 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada CĂDEREA BASTILIEI + county: București + locality: Sector 1 + lat: 44.451828 + lng: 26.095286 + risk_category: RS2 + height_regime: S+P+3+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 457.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.686734+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2313 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B+C+D) + address: Strada CAIMATEI + county: București + locality: Sector 2 + lat: 44.435983 + lng: 26.107665 + risk_category: RS2 + height_regime: S+P+2E+Ma; S+P+1E S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 840.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.795806+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2314 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada CAIMATEI + county: București + locality: Sector 2 + lat: 44.436263 + lng: 26.108458 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:40.940475+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2315 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada CAIMATEI + county: București + locality: Sector 2 + lat: 44.435768 + lng: 26.107377 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 618.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:41.099265+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2316 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada CAIMATEI + county: București + locality: Sector 2 + lat: 44.435873 + lng: 26.107511 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:41.265835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2317 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada CĂLUSEI + county: București + locality: Sector 2 + lat: 44.443325 + lng: 26.121257 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Apostol ZEFIR + observations: Încadrare în clasă de risc seismic RsIII spre RsIV în anul 2013 + has_warning_panels: null + year_built: 1929 + surface: 283.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:41.420063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2318 + fields: + parent_id: null + status: 1 + street_number: 19A + address: Strada CALUŞEI + county: București + locality: Sector 2 + lat: 44.4433362 + lng: 26.1217508 + risk_category: RS2 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 156.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:41.634049+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2319 + fields: + parent_id: null + status: 1 + street_number: 32A + address: Strada CALUŞEI + county: București + locality: Sector 2 + lat: 44.443265 + lng: 26.123146 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 444.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:41.847198+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2320 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada CĂLUSEI + county: București + locality: Sector 2 + lat: 44.443264 + lng: 26.120412 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 12.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.009453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2321 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada CALUSEI + county: București + locality: Sector 2 + lat: 44.443527 + lng: 26.124703 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ioan LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.185884+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2322 + fields: + parent_id: null + status: 1 + street_number: 4A + address: Strada CALUŞEI + county: București + locality: Sector 2 + lat: 44.443264 + lng: 26.120412 + risk_category: RS2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 797.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.320113+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2323 + fields: + parent_id: null + status: 1 + street_number: 64A + address: Strada CALUŞEI + county: București + locality: Sector 2 + lat: 44.443709 + lng: 26.125792 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1901 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.523894+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2324 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.443429 + lng: 26.078133 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.751082+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2325 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.444274 + lng: 26.080759 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 466.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:42.960385+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2326 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.444352 + lng: 26.080695 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Niculae TEODOR + observations: 'Încadrare în clasă de risc seismic în anul 2016. Propunerea expertului + tehnic: demolarea clădirii.' + has_warning_panels: null + year_built: 1935 + surface: 1792.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:43.127713+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2327 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.444305 + lng: 26.080731 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 196.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:43.271385+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2328 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.443308 + lng: 26.078035 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 114.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:43.382719+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2329 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.443601 + lng: 26.078796 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 242.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:43.608665+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2330 + fields: + parent_id: null + status: 1 + street_number: 8 (corp A+B+C+D) + address: Strada CAMELIEI + county: București + locality: Sector 1 + lat: 44.443408 + lng: 26.0785389 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 169.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:43.864702+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2331 + fields: + parent_id: null + status: 1 + street_number: 19 (bloc M56) + address: Strada CAMIL RESSU + county: București + locality: Sector 3 + lat: 44.419128 + lng: 26.143418 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 15145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:44.039121+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2332 + fields: + parent_id: null + status: 1 + street_number: 23 (bloc M55) + address: Strada CAMIL RESSU + county: București + locality: Sector 3 + lat: 44.418741 + lng: 26.144775 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 15145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:44.179634+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2333 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada CĂMINULUI + county: București + locality: Sector 2 + lat: 44.445875 + lng: 26.135317 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:44.362049+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2334 + fields: + parent_id: null + status: 1 + street_number: 14÷20 (bloc F3) + address: Strada CĂMINULUI + county: București + locality: Sector 2 + lat: 44.446931 + lng: 26.138296 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:44.543154+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2335 + fields: + parent_id: null + status: 1 + street_number: 16A + address: Strada CĂMINULUI + county: București + locality: Sector 2 + lat: 44.446524 + lng: 26.137385 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 281.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:44.720931+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2336 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada CĂMINULUI + county: București + locality: Sector 2 + lat: 44.445815 + lng: 26.135411 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 276.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:45.020775+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2337 + fields: + parent_id: null + status: 1 + street_number: 22÷24 + address: Strada CĂMINULUI + county: București + locality: Sector 2 + lat: 44.447213 + lng: 26.139013 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 64 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 6437.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:45.200988+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2338 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc 6A, tronson I+II) + address: Strada CÂMPIA LIBERTĂŢII + county: București + locality: Sector 3 + lat: 44.428817 + lng: 26.1481602 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 119 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gabriel NICULESCU + observations: Încadrare în clasă de risc seismic în anul 2013 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1963 + surface: 724.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:45.349235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2339 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada CÂMPIA LIBERTĂŢII + county: București + locality: Sector 3 + lat: 44.429365 + lng: 26.1450989 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 120 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 724.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:45.484978+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2340 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc PM52, scara A+B+C+D) + address: Strada CÂMPIA LIBERTĂŢII + county: București + locality: Sector 3 + lat: 44.4304633 + lng: 26.1463933 + risk_category: U2 + height_regime: P+10E+1E tehnic + is_still_present: true + consolidation_status: 'NO' + apartment_count: 208 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gheorghe DOBRESCU + observations: Încadrare în clasă de risc seismic în anul 2013 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1979 + surface: 187.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:45.733914+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2341 + fields: + parent_id: null + status: 1 + street_number: '109' + address: Strada CAROL DAVILA + county: București + locality: Sector 5 + lat: 44.437117 + lng: 26.068172 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 291.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.031875+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2342 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada CAROL KNAPPE + county: București + locality: Sector 1 + lat: 44.462234 + lng: 26.069071 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.206981+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2343 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada CASIN + county: București + locality: Sector 1 + lat: 44.469205 + lng: 26.052812 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 208.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.367695+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2344 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A+B) + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.433628 + lng: 26.105658 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 475.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.493786+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2345 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.433083 + lng: 26.105656 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1885 + surface: 350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.596893+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2346 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.432845 + lng: 26.10566 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.706203+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2347 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.432367 + lng: 26.105652 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 1575.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:46.900427+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2348 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.433473 + lng: 26.105882 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:47.201707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2349 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CAVAFII VECHI + county: București + locality: Sector 3 + lat: 44.433227 + lng: 26.105654 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:47.383050+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2350 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada CERCULUI + county: București + locality: Sector 2 + lat: 44.43976 + lng: 26.114378 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 723.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:47.473299+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2351 + fields: + parent_id: null + status: 1 + street_number: 11C + address: Strada CEZAR BOLLIAC + county: București + locality: Sector 3 + lat: 44.430177 + lng: 26.127161 + risk_category: U2 + height_regime: S+P+2E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 540.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:47.628356+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2352 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada CEZAR BOLLIAC + county: București + locality: Sector 3 + lat: 44.429172 + lng: 26.127401 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 104.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:47.825330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2353 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada CHINDIEI + county: București + locality: Sector 4 + lat: 44.422692 + lng: 26.093143 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Corneliu MUDRACENCU + observations: A.C. nr.399/1559056/2017; P.V.R.T.L. nr.1/2019 + has_warning_panels: null + year_built: 1931 + surface: 720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.022276+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2354 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.452362 + lng: 26.094351 + risk_category: U2 + height_regime: S+P+2E+Ma parțial + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Aurelian PAVELESCU + observations: Încadrare în clasă de risc seismic în anul 2018 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Radu DIAMANDOPOL) + has_warning_panels: null + year_built: 1934 + surface: 543.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.246062+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2355 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.452508 + lng: 26.0942 + risk_category: RS1 + height_regime: S+P+4+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 405.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.424039+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2356 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.451884 + lng: 26.09431 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 484.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.539992+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2357 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.451896 + lng: 26.094434 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 411.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.696463+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2358 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.452061 + lng: 26.094405 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 625.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:48.890722+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2359 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.452191 + lng: 26.094255 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 283.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:49.146581+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2360 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada CIPRIAN PORUMBESCU + county: București + locality: Sector 1 + lat: 44.452203 + lng: 26.094379 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 680.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:49.368411+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2361 + fields: + parent_id: null + status: 1 + street_number: '150' + address: Strada CIREŞOAIA + county: București + locality: Sector 1 + lat: 44.492272 + lng: 26.044429 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:49.506817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2362 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada CIREŞULUI + county: București + locality: Sector 2 + lat: 44.434997 + lng: 26.129001 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1918 + surface: 573.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:49.637772+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2363 + fields: + parent_id: null + status: 1 + street_number: 35 (corp A+B) + address: Strada CIREŞULUI + county: București + locality: Sector 2 + lat: 44.435141 + lng: 26.129294 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 182.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:49.804759+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2364 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada CLOPOTARII VECHI + county: București + locality: Sector 1 + lat: 44.451066 + lng: 26.09048 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 835.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.044404+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2365 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada CLUCERU UDRICANI + county: București + locality: Sector 3 + lat: 44.429502 + lng: 26.10965 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1885 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.238368+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2366 + fields: + parent_id: null + status: 1 + street_number: 12bis + address: Strada CLUCERUL UDRICANI + county: București + locality: Sector 3 + lat: 44.4292121 + lng: 26.1089257 + risk_category: U2 + height_regime: D+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.483270+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2367 + fields: + parent_id: null + status: 1 + street_number: 16 (13) + address: Strada COLŢEI (colț cu Strada NICOLAE MAVROGHENI) + county: București + locality: Sector 3 + lat: 44.4335143 + lng: 26.1045535 + risk_category: C + height_regime: S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSĂCHESCU; Laurenţiu SPOIALĂ + observations: AC nr.475/1244582/2014. PVR nr.40/2014 + has_warning_panels: null + year_built: 1880 + surface: 70.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.600488+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2368 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433828 + lng: 26.10443 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.701949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2369 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433714 + lng: 26.104206 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 908.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:50.845372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2370 + fields: + parent_id: null + status: 1 + street_number: 15A + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434353 + lng: 26.105533 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:51.038153+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2371 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433702 + lng: 26.103236 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:51.255058+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2372 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434578 + lng: 26.105945 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1896 + surface: 628.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:51.473620+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2373 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433772 + lng: 26.104684 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 56.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:51.689869+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2374 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434728 + lng: 26.105923 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 3528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:51.848672+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2375 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada COLTEI + county: București + locality: Sector 3 + lat: 44.433692 + lng: 26.104662 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:52.044028+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2376 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434857 + lng: 26.10639 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 171.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:52.330599+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2377 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434809 + lng: 26.106577 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 74.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:52.566052+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2378 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433916 + lng: 26.105321 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 92.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:52.674043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2379 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433992 + lng: 26.105189 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea POPESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:52.881008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2380 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434119 + lng: 26.105375 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 192.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:53.050136+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2381 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433673 + lng: 26.103464 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:53.238230+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2382 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.4343606 + lng: 26.1058852 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: AC nr.55/782742/2008 PVRTL nr.867900/2009 + has_warning_panels: null + year_built: 1908 + surface: 1775.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:53.468505+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2383 + fields: + parent_id: null + status: 1 + street_number: 46 (corp A) + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434574 + lng: 26.106157 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 549.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:53.743298+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2384 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434662 + lng: 26.10651 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1907 + surface: 88.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:53.886032+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2385 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.433929 + lng: 26.104916 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.017909+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2386 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434688 + lng: 26.106726 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1913 + surface: 896.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.178938+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2387 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada COLTEI + county: București + locality: Sector 3 + lat: 44.433684 + lng: 26.103693 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru FOTACHE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.382960+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2388 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434013 + lng: 26.10504 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 848.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.593538+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2389 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada COLŢEI + county: București + locality: Sector 3 + lat: 44.434098 + lng: 26.105163 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.777474+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2390 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada CONCORDIEI + county: București + locality: Sector 4 + lat: 44.420891 + lng: 26.100894 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 174.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:54.966853+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2391 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CONCORDIEI + county: București + locality: Sector 4 + lat: 44.421147 + lng: 26.101184 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:55.105239+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2392 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada CONCORDIEI + county: București + locality: Sector 4 + lat: 44.421059 + lng: 26.101091 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 345.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:55.298673+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2393 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada CONSTANTIN BĂLĂCESCU + county: București + locality: Sector 1 + lat: 44.444696 + lng: 26.072821 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 879.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:55.523882+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2394 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada CONSTANTIN BĂLĂCESCU + county: București + locality: Sector 1 + lat: 44.444968 + lng: 26.071538 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1918 + surface: 361.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:55.743550+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2395 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada CONSTANTIN BĂLESCU + county: București + locality: Sector 1 + lat: 44.466537 + lng: 26.091098 + risk_category: U2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 138.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:55.912135+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2396 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada CONSTANTIN BĂLESCU + county: București + locality: Sector 1 + lat: 44.46689 + lng: 26.091363 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 926.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.102120+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2397 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada CONSTANTIN BONEA + county: București + locality: Sector 5 + lat: 44.401998 + lng: 26.085002 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.287068+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2398 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada CONSTANTIN BOSIANU + county: București + locality: Sector 4 + lat: 44.421098 + lng: 26.090481 + risk_category: RS3 + height_regime: S+P+Mz+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 23.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.440010+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2399 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc D12) + address: Strada CONSTANTIN BRÂNCUSI + county: București + locality: Sector 3 + lat: 44.4292001 + lng: 26.1569502 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 55.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.599807+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2400 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc D13) + address: Strada CONSTANTIN BRÂNCUSI + county: București + locality: Sector 3 + lat: 44.429237 + lng: 26.157665 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 55.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.763950+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2401 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc D14) + address: Strada CONSTANTIN BRÂNCUSI + county: București + locality: Sector 3 + lat: 44.4292641 + lng: 26.1583991 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 55.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:56.942615+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2402 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada CONSTANTIN COANDĂ + county: București + locality: Sector 1 + lat: 44.451071 + lng: 26.093535 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 578.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.142141+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2403 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CONSTANTIN COANDA + county: București + locality: Sector 1 + lat: 44.450817 + lng: 26.091921 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Armand NEFIAN + observations: Reîncadrare în clasă de risc seismic în anul 2016 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Armand NEFIAN) + has_warning_panels: null + year_built: 1935 + surface: 904.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.307247+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2404 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada CONSTANTIN CRISTESCU + county: București + locality: Sector 1 + lat: 44.438908 + lng: 26.084849 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 156.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.470328+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2405 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CONSTANTIN CRISTESCU + county: București + locality: Sector 1 + lat: 44.438942 + lng: 26.084664 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Octavian MANOIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 440.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.662528+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2406 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada CONSTANTIN DANIEL ROSENTHAL + county: București + locality: Sector 1 + lat: 44.465128 + lng: 26.08957 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.848780+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2407 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada CONSTANTIN DANIEL ROSENTHAL + county: București + locality: Sector 1 + lat: 44.466106 + lng: 26.088663 + risk_category: U4 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Iorgu NICULA + observations: Încadrare în clasă de risc seismic în anul 2018 AC nr.107/4/R/24691/2002 + AC nr.851/27/L/26664/2004 PVRTL nr.84/2004 + has_warning_panels: null + year_built: 2004 + surface: 54337.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:57.933320+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2408 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada CONSTANTIN DANIEL ROSENTHAL + county: București + locality: Sector 1 + lat: 44.466601 + lng: 26.088472 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 680.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.069584+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2409 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada CONSTANTIN DISESCU + county: București + locality: Sector 1 + lat: 44.449437 + lng: 26.0752 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 389.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.229411+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2410 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CONSTANTIN ESARHU + county: București + locality: Sector 1 + lat: 44.441845 + lng: 26.097465 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.378446+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2411 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada CONSTANTIN F. ROBESCU + county: București + locality: Sector 3 + lat: 44.432635 + lng: 26.107524 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 821.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.523720+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2412 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada CONSTANTIN F. ROBESCU + county: București + locality: Sector 3 + lat: 44.432709 + lng: 26.108765 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae GHITA + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 761.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.665699+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2413 + fields: + parent_id: null + status: 1 + street_number: 20÷22 + address: Strada CONSTANTIN MICULESCU + county: București + locality: Sector 5 + lat: 44.416107 + lng: 26.087718 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 222.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:58.876608+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2414 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada CONSTANTIN MICULESCU + county: București + locality: Sector 5 + lat: 44.415143 + lng: 26.088866 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1908 + surface: 584.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.070679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2415 + fields: + parent_id: null + status: 1 + street_number: 14÷16 (corp A+B) + address: Strada CONSTANTIN MILLE (“TEATRUL MIC”) + county: București + locality: Sector 1 + lat: 44.43565343 + lng: 26.09536861 + risk_category: U2 + height_regime: S+P+2E S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Andrei Dragoş MARCU + observations: '' + has_warning_panels: null + year_built: 1955 + surface: 306.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.353731+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2416 + fields: + parent_id: null + status: 1 + street_number: '14÷16 (corp C: sala de spectacole + apartamente proprietate persoane + fizice)' + address: Strada CONSTANTIN MILLE (“TEATRUL MIC”) + county: București + locality: Sector 1 + lat: 44.435614 + lng: 26.095518 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Andrei Dragoş MARCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 680.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.527463+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2417 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada CONSTANTIN NACU + county: București + locality: Sector 2 + lat: 44.43772 + lng: 26.108243 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1484.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.685645+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2418 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CONSTANTIN NACU + county: București + locality: Sector 2 + lat: 44.437315 + lng: 26.108272 + risk_category: RS3 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 910.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.837769+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2419 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada CONSTANTIN NACU + county: București + locality: Sector 2 + lat: 44.437696 + lng: 26.108121 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1698.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:46:59.994200+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2420 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada CONSTANTIN NACU + county: București + locality: Sector 2 + lat: 44.437841 + lng: 26.108103 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1538.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:00.238560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2421 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada CONSTANTIN RADULESCU MOTRU + county: București + locality: Sector 4 + lat: 44.414019 + lng: 26.108126 + risk_category: U3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 79 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Constantin IEREMIA + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 7104.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:00.450686+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2422 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada CONSTANTIN SANDU ALDEA + county: București + locality: Sector 1 + lat: 44.468474 + lng: 26.06649 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 226.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:00.590297+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2423 + fields: + parent_id: null + status: 1 + street_number: '65' + address: Strada CONSTANTIN SANDU ALDEA + county: București + locality: Sector 1 + lat: 44.469038 + lng: 26.068419 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 408.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:00.736498+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2424 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CONSTANTIN STAHI + county: București + locality: Sector 1 + lat: 44.439153 + lng: 26.086966 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 508.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:00.898296+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2425 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada CONSTANTIN STERE + county: București + locality: Sector 1 + lat: 44.468183 + lng: 26.054769 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian ALTENLIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 304.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.046770+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2426 + fields: + parent_id: null + status: 1 + street_number: 1 (84) + address: Strada CONSTANTINTIN SILVESTRI (fostă Strada SFINŢII APOSTOLI) + county: București + locality: Sector 4 + lat: 44.4283218 + lng: 26.095217 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1386.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.279431+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2427 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada CORBENI + county: București + locality: Sector 2 + lat: 44.440376 + lng: 26.112967 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.463892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2428 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada CORBENI + county: București + locality: Sector 2 + lat: 44.439447 + lng: 26.114924 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 2306.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.647009+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2429 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada CORBENI + county: București + locality: Sector 2 + lat: 44.439172 + lng: 26.115296 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 656.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.802522+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2430 + fields: + parent_id: null + status: 1 + street_number: 12 (corp A+B) + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419473 + lng: 26.096055 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:01.996868+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2431 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419641 + lng: 26.096724 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:02.165248+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2432 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419687 + lng: 26.096896 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 285.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:02.341221+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2433 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419722 + lng: 26.097378 + risk_category: C + height_regime: S+P+1E+Mp + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: AC nr. 298/1510986/2017 PVRTL nr.1/2019 + has_warning_panels: null + year_built: 1930 + surface: 465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:02.627949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2434 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419601 + lng: 26.095352 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:02.803824+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2435 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419913 + lng: 26.098152 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:02.968699+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2436 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CORNELIA + county: București + locality: Sector 4 + lat: 44.419588 + lng: 26.095556 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:03.101889+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2437 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada COSTACHE NEGRI + county: București + locality: Sector 5 + lat: 44.433379 + lng: 26.078325 + risk_category: U1 + height_regime: Ds+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2015 + has_warning_panels: null + year_built: 1932 + surface: 429.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:03.276235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2438 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada COSTACHE NEGRI + county: București + locality: Sector 5 + lat: 44.433052 + lng: 26.078535 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 750.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:03.512426+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2439 + fields: + parent_id: null + status: 1 + street_number: 28 (corp A) + address: Strada COSTACHE NEGRI + county: București + locality: Sector 5 + lat: 44.432057 + lng: 26.078657 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:03.752066+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2440 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada COVACI (“BAZZAR LOUNGE & CLUB”) + county: București + locality: Sector 3 + lat: 44.430436 + lng: 26.101999 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mihai URSĂCHESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Ioan VÂRŞĂ) + has_warning_panels: null + year_built: 1890 + surface: 2282.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:03.915755+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2441 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada COVACI (“CAFENEAUA VECHE”) + county: București + locality: Sector 3 + lat: 44.4302907 + lng: 26.1024838 + risk_category: C + height_regime: S+P+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Mircea MIRONESCU + observations: AC nr.426/1007196/2011 PVRTL nr.1094/2011 + has_warning_panels: null + year_built: 1900 + surface: 980.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:04.040896+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2442 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada COVACI (S.C. “GALERIA NOI” S.R.L. filiala “CRAII DE CURTE VECHE”) + county: București + locality: Sector 3 + lat: 44.430353 + lng: 26.102234 + risk_category: U2 + height_regime: P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Armand NEFIAN + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul majorităţii + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Mihai PERJESCU) + has_warning_panels: null + year_built: 1940 + surface: 1535.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:04.173652+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2443 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.4311661 + lng: 26.1011345 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ioan VÂRŞĂ + observations: PVRTL 2009 + has_warning_panels: null + year_built: 1880 + surface: 911.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:04.364143+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2444 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.430473 + lng: 26.102292 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 428.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:04.598370+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2445 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.4304847 + lng: 26.1026596 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: AC nr.919/2009 PVRF nr.394/2011 + has_warning_panels: null + year_built: 1910 + surface: 921.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:04.857969+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2446 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A+B) + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.430901 + lng: 26.101067 + risk_category: RS3 + height_regime: S+P+2E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1879 + surface: 1512.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.007069+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2447 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.430384 + lng: 26.102558 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.100796+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2448 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.4303 + lng: 26.102943 + risk_category: C + height_regime: Sp+P+2E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: A.C. nr.401/1443720/2016 P.V.R.T.L. nr.1/2019 + has_warning_panels: null + year_built: 1891 + surface: 462.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.259598+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2449 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.431022 + lng: 26.10145 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1859 + surface: 112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.462516+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2450 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.430867 + lng: 26.101301 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1897 + surface: 807.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.694234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2451 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.43096 + lng: 26.101714 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1893 + surface: 828.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:05.961720+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2452 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.4303954 + lng: 26.1016887 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: AC nr.44C/2001 PVRTL nr.494805/2005 + has_warning_panels: null + year_built: 1860 + surface: 576.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.076727+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2453 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada COVACI + county: București + locality: Sector 3 + lat: 44.430585 + lng: 26.101787 + risk_category: RS1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1860 + surface: 876.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.204126+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2454 + fields: + parent_id: null + status: 1 + street_number: 15 (bloc A3) + address: Strada COVASNA + county: București + locality: Sector 4 + lat: 44.379934 + lng: 26.113396 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 3297.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.391808+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2455 + fields: + parent_id: null + status: 1 + street_number: 27 (bloc A7) + address: Strada COVASNA + county: București + locality: Sector 4 + lat: 44.378505 + lng: 26.112392 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.605657+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2456 + fields: + parent_id: null + status: 1 + street_number: 2A (bloc F3) + address: Strada COZLA + county: București + locality: Sector 3 + lat: 44.423809 + lng: 26.170026 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1973 + surface: 2816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.763279+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2457 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada CRĂCIUN + county: București + locality: Sector 1 + lat: 44.450408 + lng: 26.09812 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 381.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:06.945992+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2458 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc F2) + address: Strada CRINUL DE PADURE + county: București + locality: Sector 6 + lat: 44.42377 + lng: 26.032342 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 516.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.120609+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2459 + fields: + parent_id: null + status: 1 + street_number: 5÷15 (bloc A3) + address: Strada CRINULUI + county: București + locality: Sector 1 + lat: 44.484151 + lng: 26.038816 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 638.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.210353+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2460 + fields: + parent_id: null + status: 1 + street_number: 7 (28) + address: Strada CRIŞANA (colț cu Strada HORAȚIU) + county: București + locality: Sector 1 + lat: 44.4435683 + lng: 26.0826484 + risk_category: U3 + height_regime: Ds+P+1E+Ma+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 738.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.322505+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2461 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada CRIŞANA + county: București + locality: Sector 1 + lat: 44.442432 + lng: 26.081434 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 720.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.486346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2462 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada CRIŞANA + county: București + locality: Sector 1 + lat: 44.442997 + lng: 26.083638 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1913 + surface: 445.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.675007+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2463 + fields: + parent_id: null + status: 1 + street_number: 16 (bloc Z4) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.406146 + lng: 26.053754 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:07.871679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2464 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc Z11) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.405671 + lng: 26.056155 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.069013+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2465 + fields: + parent_id: null + status: 1 + street_number: 20 (bloc Z2) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.406284 + lng: 26.053189 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.231835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2466 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc Z10) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.40576 + lng: 26.055417 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.321667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2467 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc Z9) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.405822 + lng: 26.055121 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.433740+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2468 + fields: + parent_id: null + status: 1 + street_number: 8 (bloc Z8) + address: Strada CRIZANTEMELOR + county: București + locality: Sector 5 + lat: 44.40587 + lng: 26.054838 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.586959+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2469 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada CULMEA VECHE + county: București + locality: Sector 3 + lat: 44.434492 + lng: 26.110056 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.778715+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2470 + fields: + parent_id: null + status: 1 + street_number: 18 (corp A+B) + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.41196 + lng: 26.09278 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristisn BALAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:08.987796+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2471 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.409083 + lng: 26.096104 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.216610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2472 + fields: + parent_id: null + status: 1 + street_number: 28 (corp B+C) + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.4111316 + lng: 26.0933701 + risk_category: RS2 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.364273+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2473 + fields: + parent_id: null + status: 1 + street_number: 62÷62A + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.409668 + lng: 26.095304 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.477403+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2474 + fields: + parent_id: null + status: 1 + street_number: 64 (corp A+B+C) + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.4094354 + lng: 26.0955305 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 508.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.679191+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2475 + fields: + parent_id: null + status: 1 + street_number: 68 (corp A+B) + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.409352 + lng: 26.095729 + risk_category: RS2 + height_regime: S+P+2E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 533.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.803367+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2476 + fields: + parent_id: null + status: 1 + street_number: 72A + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.409037 + lng: 26.095996 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 244.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:09.935616+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2477 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Strada CUŢITUL DE ARGINT + county: București + locality: Sector 4 + lat: 44.408737 + lng: 26.096341 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 456.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.105064+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2478 + fields: + parent_id: null + status: 1 + street_number: 53 (corp A+B) + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.422129 + lng: 26.106027 + risk_category: RS3 + height_regime: S+P+1E; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP, Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.240763+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2479 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.420148 + lng: 26.105992 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 135.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.430931+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2480 + fields: + parent_id: null + status: 1 + street_number: 86 (corp A+B) + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.419748 + lng: 26.105755 + risk_category: RS2 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.599633+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2481 + fields: + parent_id: null + status: 1 + street_number: '89' + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.419497 + lng: 26.105788 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 597.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.710586+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2482 + fields: + parent_id: null + status: 1 + street_number: 93 (corp A+B) + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.419192 + lng: 26.105895 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 216.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.824873+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2483 + fields: + parent_id: null + status: 1 + street_number: '96' + address: Strada CUZA VODA + county: București + locality: Sector 4 + lat: 44.418981 + lng: 26.10589 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:10.967336+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2484 + fields: + parent_id: null + status: 1 + street_number: 98 (corp A+B+C+D+E) + address: Strada CUZA VODĂ + county: București + locality: Sector 4 + lat: 44.418809 + lng: 26.106 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 140.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.190746+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2485 + fields: + parent_id: null + status: 1 + street_number: 17 (15) + address: Strada D. I. MENDELEEV (colț cu Strada PIAȚA AMZEI) + county: București + locality: Sector 1 + lat: 44.4443251 + lng: 26.095839 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: CONSOLIDAT PARŢIAL ! Obiectiv de investiții preluat de Administrația + Municipală pentru Consolidarea Clădirilor cu Risc Seismic de la Direcția Generală + Investiții (P.M.B.) pentru finalizarea execuției lucrărilor de consolidare. + has_warning_panels: null + year_built: 1935 + surface: 4579.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.357782+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2486 + fields: + parent_id: null + status: 1 + street_number: 39 (39) + address: Strada D. I. MENDELEEV (fostă Bulevardul NICOLAE BĂLCEASCU) + county: București + locality: Sector 1 + lat: 44.444712 + lng: 26.096524 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1591.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.509806+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2487 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada D. I. MENDELEEV + county: București + locality: Sector 1 + lat: 44.444251 + lng: 26.096504 + risk_category: U2 + height_regime: S+P+Mz+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 994.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.643654+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2488 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada D. I. MENDELEEV + county: București + locality: Sector 1 + lat: 44.4431724 + lng: 26.0967103 + risk_category: C + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: AC nr.762/1099100/2012 PVRTL nr.1181592/2013 + has_warning_panels: null + year_built: 1928 + surface: 875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.774949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2489 + fields: + parent_id: null + status: 1 + street_number: 26 (corp A) + address: Strada D. I. MENDELEEV + county: București + locality: Sector 1 + lat: 44.4446241 + lng: 26.096615 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1864 + surface: 542.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:11.900064+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2490 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada D. I. MENDELEEV + county: București + locality: Sector 1 + lat: 44.445829 + lng: 26.096382 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1802.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.074467+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2491 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada DAVID PRAPORGESCU + county: București + locality: Sector 2 + lat: 44.439546 + lng: 26.10397 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 548.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.189165+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2492 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada DAVID PRAPORGESCU + county: București + locality: Sector 2 + lat: 44.440453 + lng: 26.103671 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 270.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.306545+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2493 + fields: + parent_id: null + status: 1 + street_number: 2÷12 (bloc 8) + address: Strada DEALUL ȚUGULEA + county: București + locality: Sector 6 + lat: 44.435488 + lng: 26.028468 + risk_category: N/A + height_regime: S+P+9…10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin CIOVEIE + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.467346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2494 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada DEJ + county: București + locality: Sector 1 + lat: 44.470258 + lng: 26.049835 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 186.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.620964+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2495 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada DESPOT VODĂ + county: București + locality: Sector 2 + lat: 44.451746 + lng: 26.1154514 + risk_category: C + height_regime: S+P + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.761933+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2496 + fields: + parent_id: null + status: 1 + street_number: 7 (corp A) + address: Strada DESPOT VODĂ + county: București + locality: Sector 2 + lat: 44.44922789 + lng: 26.11578483 + risk_category: U2 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Eugen LOZINCĂ + observations: Încadrare în clasă de risc seismic în anul 2015 + has_warning_panels: null + year_built: 1923 + surface: 268.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:12.903403+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2497 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada DIANEI + county: București + locality: Sector 2 + lat: 44.438295 + lng: 26.106055 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.068647+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2498 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada DIANEI + county: București + locality: Sector 2 + lat: 44.436709 + lng: 26.106834 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Petru VERNESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 132.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.194202+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2499 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada DIANEI + county: București + locality: Sector 2 + lat: 44.437244 + lng: 26.106386 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1509.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.320084+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2500 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada DIDIŢEL + county: București + locality: Sector 4 + lat: 44.416197 + lng: 26.10503 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 113.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.526813+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2501 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada DIDIŢEL + county: București + locality: Sector 4 + lat: 44.416221 + lng: 26.105155 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.761020+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2502 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada DIMINEŢII + county: București + locality: Sector 2 + lat: 44.434998 + lng: 26.114826 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Nicola GOSPODINOV + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1935 + surface: 670.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:13.890401+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2503 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada DIMITRIE BOLINTINEANU + county: București + locality: Sector 3 + lat: 44.434926 + lng: 26.106525 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculae TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.022665+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2504 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada DIMITRIE BOLINTINEANU + county: București + locality: Sector 3 + lat: 44.434913 + lng: 26.105719 + risk_category: RS3 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Theodor MARIN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.203643+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2505 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada DIMITRIE BOLINTINEANU + county: București + locality: Sector 3 + lat: 44.435064 + lng: 26.106011 + risk_category: U1 + height_regime: P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 5239.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.336078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2506 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada DIMITRIE GIURESCU + county: București + locality: Sector 1 + lat: 44.448276 + lng: 26.097862 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 606.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.465180+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2507 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada DIMITRIE GIURESCU + county: București + locality: Sector 1 + lat: 44.448209 + lng: 26.098895 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 318.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.654120+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2508 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada DIMITRIE GIURESCU + county: București + locality: Sector 1 + lat: 44.448164 + lng: 26.098194 + risk_category: RS2 + height_regime: S+P+Mz+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 920.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:14.847306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2509 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada DIMITRIE GIURESCU + county: București + locality: Sector 1 + lat: 44.448186 + lng: 26.09785 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 408.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.004556+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2510 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada DIMITRIE GUSTI + county: București + locality: Sector 1 + lat: 44.440991 + lng: 26.077852 + risk_category: RS4 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 106.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.147916+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2511 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada DIMITRIE GUSTI + county: București + locality: Sector 1 + lat: 44.440091 + lng: 26.078304 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.310893+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2512 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.440661 + lng: 26.119814 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.435792+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2513 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.441325 + lng: 26.120109 + risk_category: RS2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 843.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.579721+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2514 + fields: + parent_id: null + status: 1 + street_number: 16A + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.441116 + lng: 26.120108 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.781116+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2515 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.441538 + lng: 26.120072 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP. Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 716.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:15.995845+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2516 + fields: + parent_id: null + status: 1 + street_number: 29A + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.441621 + lng: 26.119954 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Eugeniu IORDACHESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1935 + surface: 716.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.121249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2517 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada DIMITRIE ONCIUL + county: București + locality: Sector 2 + lat: 44.441584 + lng: 26.120108 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 260.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.243796+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2518 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada DIMITRIE ORBESCU + county: București + locality: Sector 2 + lat: 44.445887 + lng: 26.107664 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.370972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2519 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada DIMITRIE ORBESCU + county: București + locality: Sector 2 + lat: 44.445301 + lng: 26.108192 + risk_category: RS3 + height_regime: DS+P+1+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 943.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.464179+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2520 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada DIMITRIE ORBESCU + county: București + locality: Sector 2 + lat: 44.445343 + lng: 26.108223 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.595081+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2521 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada DIMITRIE RACOVIŢĂ + county: București + locality: Sector 2 + lat: 44.437581 + lng: 26.116468 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 888.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.715297+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2522 + fields: + parent_id: null + status: 1 + street_number: 30A + address: Strada DIMITRIE RACOVIŢĂ + county: București + locality: Sector 2 + lat: 44.43773 + lng: 26.117954 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 485.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.806083+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2523 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada DIMITRIE RACOVIŢĂ + county: București + locality: Sector 2 + lat: 44.437904 + lng: 26.11774 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 21.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:16.966234+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2524 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada DIMITRIE SALMEN + county: București + locality: Sector 2 + lat: 44.442079 + lng: 26.123111 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 124.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.090619+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2525 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada DIMITRIE SALMEN + county: București + locality: Sector 2 + lat: 44.441606 + lng: 26.12361 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1104.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.223700+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2526 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A) + address: Strada DIMITRIE SALMEN + county: București + locality: Sector 2 + lat: 44.442321 + lng: 26.122951 + risk_category: RS1 + height_regime: P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 394.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.382087+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2527 + fields: + parent_id: null + status: 1 + street_number: 30 (corp B) + address: Strada DIMITRIE SALMEN + county: București + locality: Sector 2 + lat: 44.442321 + lng: 26.122951 + risk_category: U3 + height_regime: Ds+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Gabriel NEGULESCU + observations: Încadrare în clasă de risc seismic în anul 2016, AC nr.454/1619364/2018; + PVRTL nr.1/2020 + has_warning_panels: null + year_built: 1934 + surface: 187.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.485749+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2528 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada DIONISIE LUPU + county: București + locality: Sector 2 + lat: 44.441408 + lng: 26.102146 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 2461.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.642999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2529 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada DIONISIE LUPU + county: București + locality: Sector 2 + lat: 44.441895 + lng: 26.101997 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 346.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.851008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2530 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Strada DIONISIE LUPU + county: București + locality: Sector 1 + lat: 44.443756 + lng: 26.101159 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 2461.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:17.974139+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2531 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada DIONISIE LUPU + county: București + locality: Sector 1 + lat: 44.444311 + lng: 26.100971 + risk_category: U1 + height_regime: P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1222.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.134225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2532 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Strada DIONISIE LUPU + county: București + locality: Sector 1 + lat: 44.444279 + lng: 26.101297 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1941 + surface: 303.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.332837+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2533 + fields: + parent_id: null + status: 1 + street_number: 125 (corp A+B) + address: Strada DOAMNA GHICA + county: București + locality: Sector 2 + lat: 44.460824 + lng: 26.134946 + risk_category: RS1 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 130.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.473983+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2534 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.434235 + lng: 26.098673 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 54.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.599166+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2535 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.43328 + lng: 26.100567 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 148.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.761897+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2536 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.433384 + lng: 26.101849 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 916.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:18.908683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2537 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.433473 + lng: 26.102101 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1884 + surface: 942.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.101521+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2538 + fields: + parent_id: null + status: 1 + street_number: 27÷29 (corp A+B+C) + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.433718 + lng: 26.102532 + risk_category: RS2 + height_regime: S+P+8E;S+P+6E; S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 3010.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.286952+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2539 + fields: + parent_id: null + status: 1 + street_number: 3 (corp A+B) + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.434015 + lng: 26.099094 + risk_category: U1 + height_regime: P+3E+Ma; P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 44.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.386682+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2540 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.433807 + lng: 26.099528 + risk_category: U1 + height_regime: P+10E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 393.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.509685+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2541 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada DOAMNEI + county: București + locality: Sector 3 + lat: 44.433717 + lng: 26.099708 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian ŢIŢARU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 1482.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.647462+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2542 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada DOBROGEI + county: București + locality: Sector 1 + lat: 44.441223 + lng: 26.07966 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 130.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.778321+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2543 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc 1) + address: Strada DOINA + county: București + locality: Sector 5 + lat: 44.4096075 + lng: 26.08192 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:19.954532+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2544 + fields: + parent_id: null + status: 1 + street_number: 13 (bloc 2) + address: Strada DOINA + county: București + locality: Sector 5 + lat: 44.409147 + lng: 26.082572 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.195339+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2545 + fields: + parent_id: null + status: 1 + street_number: 15 (bloc 3) + address: Strada DOINA + county: București + locality: Sector 5 + lat: 44.408761 + lng: 26.083151 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.379334+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2546 + fields: + parent_id: null + status: 1 + street_number: 30 (corp 1+2) + address: Strada DOINA + county: București + locality: Sector 5 + lat: 44.40750744 + lng: 26.08417394 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 38.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.497017+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2547 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada DOMNIŢA ANASTASIA + county: București + locality: Sector 5 + lat: 44.434014 + lng: 26.093908 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.608543+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2548 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada DOMNIŢA ANASTASIA + county: București + locality: Sector 5 + lat: 44.433848 + lng: 26.094844 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 264.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.722541+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2549 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada DOMNIŢA ANASTASIA + county: București + locality: Sector 5 + lat: 44.433733 + lng: 26.094551 + risk_category: U2 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.846430+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2550 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada DOMNIŢA ANASTASIA + county: București + locality: Sector 5 + lat: 44.433896 + lng: 26.094579 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 173.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:20.998040+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2551 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada DOMNIŢA ANASTASIA + county: București + locality: Sector 5 + lat: 44.433507 + lng: 26.095665 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1890 + surface: 153.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.144843+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2552 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada DOMNIŢA ANCUTA + county: București + locality: Sector 1 + lat: 44.445136 + lng: 26.068741 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 348.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.331222+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2553 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada DRAGOŞ VODĂ + county: București + locality: Sector 2 + lat: 44.445986 + lng: 26.116419 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 444.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.515486+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2554 + fields: + parent_id: null + status: 1 + street_number: 104 (bloc 15B) + address: Strada DRISTORULUI + county: București + locality: Sector 3 + lat: 44.421113 + lng: 26.138231 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 721.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.618878+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2555 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Strada DRISTORULUI + county: București + locality: Sector 3 + lat: 44.425989 + lng: 26.135974 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 252.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.768911+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2556 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada DROBETA + county: București + locality: Sector 2 + lat: 44.446298 + lng: 26.107002 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1678.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:21.947947+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2557 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Strada DROBETA + county: București + locality: Sector 2 + lat: 44.4466 + lng: 26.107012 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 2485.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.110589+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2558 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada DROBETA + county: București + locality: Sector 2 + lat: 44.446747 + lng: 26.107024 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1282.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.328621+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2559 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada DRUMEA RADULESCU + county: București + locality: Sector 4 + lat: 44.41641 + lng: 26.105673 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 252.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.530057+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2560 + fields: + parent_id: null + status: 1 + street_number: 12 (corp A+B+C) + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.444771 + lng: 26.106032 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 1316.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.647744+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2561 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.445098 + lng: 26.106506 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 137.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.760130+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2562 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada DUMBRAVA ROSIE + county: București + locality: Sector 2 + lat: 44.445553 + lng: 26.107703 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:22.890785+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2563 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.445322 + lng: 26.107376 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai STEFANESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 744.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.058416+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2564 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.44548 + lng: 26.107776 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 830.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.295603+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2565 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.445558 + lng: 26.108149 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae NEER + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 624.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.479472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2566 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.445543 + lng: 26.108835 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 584.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.686103+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2567 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada DUMBRAVA ROŞIE + county: București + locality: Sector 2 + lat: 44.444803 + lng: 26.104977 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 980.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.837205+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2568 + fields: + parent_id: null + status: 1 + street_number: 106 (corp A+B) + address: Strada DUMITRU PAPAZOGLU + county: București + locality: Sector 3 + lat: 44.419447 + lng: 26.120827 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 562.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:23.971963+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2569 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A+B) + address: Strada DUNAREA ALBASTRĂ + county: București + locality: Sector 3 + lat: 44.432632 + lng: 26.111053 + risk_category: RS3 + height_regime: S+P; P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 493.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:24.160053+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2570 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada DUZILOR + county: București + locality: Sector 2 + lat: 44.436137 + lng: 26.127336 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 355.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:24.353071+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2571 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada DUZILOR + county: București + locality: Sector 2 + lat: 44.436743 + lng: 26.130096 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:24.576144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2572 + fields: + parent_id: null + status: 1 + street_number: 8 (corp A+B) + address: Strada DUZILOR + county: București + locality: Sector 2 + lat: 44.436181 + lng: 26.12796 + risk_category: RS1 + height_regime: S+P; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:24.740223+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2573 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ECATERINA TEODOROIU + county: București + locality: Sector 1 + lat: 44.446665 + lng: 26.085195 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 680.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:24.873710+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2574 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ECATERINA TEODOROIU + county: București + locality: Sector 1 + lat: 44.445902 + lng: 26.085118 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 428.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.009552+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2575 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ECLESIARHULUI + county: București + locality: Sector 1 + lat: 44.4410036 + lng: 26.0956251 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 512.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.194189+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2576 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada EDGAR QUINET + county: București + locality: Sector 1 + lat: 44.435417 + lng: 26.098447 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1955.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.364437+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2577 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada EDGAR QUINET + county: București + locality: Sector 1 + lat: 44.435535 + lng: 26.098973 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1622.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.536855+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2578 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada EFORIEI + county: București + locality: Sector 5 + lat: 44.433976 + lng: 26.096979 + risk_category: RS2 + height_regime: S+P+Mz+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 6248.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.677249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2579 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada EFORIEI + county: București + locality: Sector 5 + lat: 44.433886 + lng: 26.095918 + risk_category: U1 + height_regime: S+P+8E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 58 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 5917.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:25.837957+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2580 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A+B+C) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.41956 + lng: 26.107 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.022232+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2581 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B+C) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.41915915 + lng: 26.10709821 + risk_category: U1 + height_regime: S+P; S+P+Mz; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 333.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.202693+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2582 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.418803 + lng: 26.107612 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 266.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.430979+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2583 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.418908 + lng: 26.107439 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.650423+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2584 + fields: + parent_id: null + status: 1 + street_number: 25 (corp A+B+C+D) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.457215 + lng: 26.131515 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 221.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.774753+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2585 + fields: + parent_id: null + status: 1 + street_number: 27 (corp A) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.41765 + lng: 26.107565 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 468.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:26.958498+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2586 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.417528 + lng: 26.107609 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Bogdan GULEAC + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1930 + surface: 363.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.108722+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2587 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.417186 + lng: 26.107741 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 246.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.234902+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2588 + fields: + parent_id: null + status: 1 + street_number: 40 (corp A+B+C) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.417786 + lng: 26.107427 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 113.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.412054+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2589 + fields: + parent_id: null + status: 1 + street_number: 42 (corp A+B+C) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.41763 + lng: 26.107446 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 280.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.638496+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2590 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.416839 + lng: 26.107906 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 47.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.834372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2591 + fields: + parent_id: null + status: 1 + street_number: 47 (corp A+B) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.41679 + lng: 26.10795 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 39.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:27.994270+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2592 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A+B) + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.419359 + lng: 26.107182 + risk_category: RS2 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 231.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.136306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2593 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Strada ELENA CUZA + county: București + locality: Sector 4 + lat: 44.416627 + lng: 26.108096 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1901 + surface: 127.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.256259+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2594 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc OD7C) + address: Strada ELENA + county: București + locality: Sector 2 + lat: 44.457763 + lng: 26.131538 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 2926.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.399068+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2595 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc OD7B) + address: Strada ELENA + county: București + locality: Sector 2 + lat: 44.457391 + lng: 26.131284 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 38.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.602941+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2596 + fields: + parent_id: null + status: 1 + street_number: 2 (Corp C2) + address: Strada Emanoil Bacaloglu + county: București + locality: Sector 2 + lat: 44.4387966 + lng: 26.1058108 + risk_category: U3 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Mihai Voiculescu + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.799852+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2597 + fields: + parent_id: null + status: 1 + street_number: 2 (Corp C3) + address: Strada Emanoil Bacaloglu + county: București + locality: Sector 2 + lat: 44.43877806 + lng: 26.10575286 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Mihai Voiculescu + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:28.987550+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2598 + fields: + parent_id: null + status: 1 + street_number: 21÷23 + address: Strada EMANOIL IONESCU + county: București + locality: Sector 1 + lat: 44.467255 + lng: 26.059285 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1906 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:29.198246+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2599 + fields: + parent_id: null + status: 1 + street_number: 35÷37 + address: Strada EMANOIL IONESCU + county: București + locality: Sector 1 + lat: 44.466504 + lng: 26.058555 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1906 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:29.340382+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2600 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada EMANOIL PORUMBARU + county: București + locality: Sector 1 + lat: 44.460027 + lng: 26.084191 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:29.471341+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2601 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada EMANUEL DAVID + county: București + locality: Sector 1 + lat: 44.451544 + lng: 26.09897 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea IONESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 710.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:29.657329+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2602 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada EMANUEL DAVID + county: București + locality: Sector 1 + lat: 44.451707 + lng: 26.099318 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1909 + surface: 426.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:29.865502+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2603 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada EMANUEL DAVID + county: București + locality: Sector 1 + lat: 44.451784 + lng: 26.0997 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 367.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.030212+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2604 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc R1) + address: Strada EMIL RACOVIŢĂ + county: București + locality: Sector 4 + lat: 44.3868833 + lng: 26.1196733 + risk_category: U3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 80 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 6.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.267979+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2605 + fields: + parent_id: null + status: 1 + street_number: 2÷4 + address: Strada EPISCOPIEI + county: București + locality: Sector 1 + lat: 44.44133 + lng: 26.096543 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 36 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.411992+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2606 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada EPISCOPIEI + county: București + locality: Sector 1 + lat: 44.441989 + lng: 26.096874 + risk_category: U2 + height_regime: S+Ds+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mircea IEREMIA + observations: Reîncadrare în clasă de risc seismic în anul 2016 (imobilul a fost + încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Dan CĂPĂŢÂNĂ) + has_warning_panels: null + year_built: 1936 + surface: 2312.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.540513+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2607 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada EPISCOPIEI + county: București + locality: Sector 1 + lat: 44.442022 + lng: 26.097343 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 235.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.697915+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2608 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada EPISCOPUL CHESARIE + county: București + locality: Sector 4 + lat: 44.421227 + lng: 26.093115 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:30.884367+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2609 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada EPISCOPUL RADU + county: București + locality: Sector 2 + lat: 44.4454909 + lng: 26.1184055 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRU + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 744.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.063493+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2610 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada EPISCOPUL RADU + county: București + locality: Sector 2 + lat: 44.446187 + lng: 26.119377 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.310217+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2611 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada EPISCOPUL RADU + county: București + locality: Sector 2 + lat: 44.447591 + lng: 26.121918 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 473.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.462245+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2612 + fields: + parent_id: null + status: 1 + street_number: 42 (corp A+B+C) + address: Strada EPISCOPUL RADU + county: București + locality: Sector 2 + lat: 44.44680659 + lng: 26.12038809 + risk_category: U2 + height_regime: S+P+2E+Ma S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 446.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.586124+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2613 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada EPISCOPUL RADU + county: București + locality: Sector 2 + lat: 44.4450133 + lng: 26.1180545 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.715148+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2614 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada EUFROSIN POTECA + county: București + locality: Sector 2 + lat: 44.445717 + lng: 26.1372 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:31.898410+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2615 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada EUFROSIN POTECA + county: București + locality: Sector 2 + lat: 44.445528 + lng: 26.137657 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 294.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.047486+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2616 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada EUFROSIN POTECA + county: București + locality: Sector 2 + lat: 44.445483 + lng: 26.138846 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 458.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.184018+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2617 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada EUGENIU CARADA (imobil cu destinația de birouri – INSTITUȚIA AVOCATUL + POPORULUI) + county: București + locality: Sector 3 + lat: 44.43270984 + lng: 26.09865442 + risk_category: U1 + height_regime: S-P-2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Rodica VASILESCU + observations: Încadrare în clasă de risc seismic în anul 2017 + has_warning_panels: null + year_built: 1912 + surface: 692.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.460360+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2618 + fields: + parent_id: null + status: 1 + street_number: 5÷7 + address: Strada EUGENIU CARADA + county: București + locality: Sector 3 + lat: 44.4329774 + lng: 26.0987674 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 276.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.603307+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2619 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada EUGENIU CARADA + county: București + locality: Sector 3 + lat: 44.4332498 + lng: 26.0989124 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1909 + surface: 146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.735431+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2620 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada FĂGĂRAŞ + county: București + locality: Sector 1 + lat: 44.440085 + lng: 26.077839 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 513.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:32.905300+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2621 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B) + address: Strada FĂINARI + county: București + locality: Sector 2 + lat: 44.448302 + lng: 26.121585 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 479.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.037598+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2622 + fields: + parent_id: null + status: 1 + street_number: 45 (corp A+B) + address: Strada FĂINARI + county: București + locality: Sector 2 + lat: 44.450569 + lng: 26.119647 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.175539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2623 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada FÂNTÂNICA + county: București + locality: Sector 2 + lat: 44.444906 + lng: 26.146443 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.392243+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2624 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada FELICIA RACOVIŢĂ + county: București + locality: Sector 5 + lat: 44.432269 + lng: 26.064254 + risk_category: U1 + height_regime: S+P+1E+Ma S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea IEREMIA + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.612218+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2625 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada FELICIA RACOVIŢĂ + county: București + locality: Sector 5 + lat: 44.432269 + lng: 26.064254 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Grigore PANICOV + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 866.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.730044+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2626 + fields: + parent_id: null + status: 1 + street_number: 1÷5 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.46426 + lng: 26.055502 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Marius HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1918 + surface: 1302.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:33.882145+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2627 + fields: + parent_id: null + status: 1 + street_number: 11÷13 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.464713 + lng: 26.056103 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 642.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.019648+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2628 + fields: + parent_id: null + status: 1 + street_number: 22÷24 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.465062 + lng: 26.056578 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.182192+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2629 + fields: + parent_id: null + status: 1 + street_number: 26÷28 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.465525 + lng: 26.056999 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 664.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.374713+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2630 + fields: + parent_id: null + status: 1 + street_number: 35B + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.465995 + lng: 26.057305 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 215.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.638687+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2631 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.466328 + lng: 26.057606 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 163.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.803861+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2632 + fields: + parent_id: null + status: 1 + street_number: 47÷49 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.467766 + lng: 26.058945 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 12.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:34.962451+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2633 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.467773 + lng: 26.058983 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Maria DARIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1116.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.089357+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2634 + fields: + parent_id: null + status: 1 + street_number: 6÷8 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.464391 + lng: 26.05594 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 633.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.241793+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2635 + fields: + parent_id: null + status: 1 + street_number: 62÷64 + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.467405 + lng: 26.058802 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 546.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.457369+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2636 + fields: + parent_id: null + status: 1 + street_number: 78÷84A + address: Strada FEROVIARILOR + county: București + locality: Sector 1 + lat: 44.467875 + lng: 26.059198 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 562.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.698045+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2637 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc 51) + address: Strada FLOARE ROŞIE + county: București + locality: Sector 6 + lat: 44.436364 + lng: 26.015946 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.872006+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2638 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 8B) + address: Strada FLOREA LAZĂR + county: București + locality: Sector 2 + lat: 44.442347 + lng: 26.177663 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 6669.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:35.985897+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2639 + fields: + parent_id: null + status: 1 + street_number: 17÷17B + address: Strada FLUIERULUI + county: București + locality: Sector 2 + lat: 44.441317 + lng: 26.126996 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1649.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.102533+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2640 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada FLUVIULUI + county: București + locality: Sector 1 + lat: 44.447626 + lng: 26.067226 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.252651+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2641 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada FOIŞORUL DE FOC + county: București + locality: Sector 2 + lat: 44.4402653 + lng: 26.1207827 + risk_category: RS1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 6255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.441820+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2642 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430296 + lng: 26.099722 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: AC nr.712/1270235/2014 PVRTL nr.576/2016 + has_warning_panels: null + year_built: 1885 + surface: 824.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.675600+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2643 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430707 + lng: 26.097562 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.820328+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2644 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430185 + lng: 26.100015 + risk_category: RS1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 1371.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:36.943176+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2645 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430688 + lng: 26.097695 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Mircea MIRONESCU + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1869 + surface: 488.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:37.058813+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2646 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430637 + lng: 26.097808 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria CRACIUN + observations: '' + has_warning_panels: null + year_built: 1850 + surface: 322.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:37.182861+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2647 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430019 + lng: 26.100335 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 624.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:37.355795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2648 + fields: + parent_id: null + status: 1 + street_number: 18 (corp A+B) + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430604 + lng: 26.09787 + risk_category: RS1 + height_regime: S+P+2E; S+P+Mz+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1883 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:37.603386+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2649 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429986 + lng: 26.100501 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 762.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:37.789012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2650 + fields: + parent_id: null + status: 1 + street_number: 20 (corp A+B) + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430595 + lng: 26.097954 + risk_category: U1 + height_regime: S+P+1E;S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 747.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.033586+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2651 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.4304998 + lng: 26.0980681 + risk_category: C + height_regime: P+4E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: AC nr.25M/1996 şi nr.13F/1999 PVRTL nr.1/1999 + has_warning_panels: null + year_built: 1900 + surface: 2957.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.135257+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2652 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430259 + lng: 26.0988 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 23 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 2622.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.265370+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2653 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430185 + lng: 26.099084 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: Reîncadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1875 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.436472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2654 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430091 + lng: 26.099169 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1840 + surface: 317.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.627859+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2655 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430087 + lng: 26.099248 + risk_category: U1 + height_regime: S+P+2E; S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1875 + surface: 663.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:38.852907+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2656 + fields: + parent_id: null + status: 1 + street_number: 38÷42 + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.4300953 + lng: 26.0993389 + risk_category: C + height_regime: S+P+2E+Ma S+P+1E+ Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: AC nr.45/758741/2008 AC nr.21/1119794/2013 PVR nr.23/2014 + has_warning_panels: null + year_built: 1870 + surface: 872.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.090995+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2657 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429927 + lng: 26.099885 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 591.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.186767+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2658 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.43048 + lng: 26.099073 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 247.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.275849+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2659 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429686 + lng: 26.100601 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.396702+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2660 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.4297917 + lng: 26.1008535 + risk_category: C + height_regime: Sp+P+1E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Constantin PAVEL + observations: AC nr.53/1205036/2014 PVRTL nr.1/2016 + has_warning_panels: null + year_built: 1770 + surface: 836.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.566226+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2661 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429781 + lng: 26.101082 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 768.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:39.781684+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2662 + fields: + parent_id: null + status: 1 + street_number: '58' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429715 + lng: 26.101278 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 221.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.043749+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2663 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B) + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430787 + lng: 26.097237 + risk_category: U1 + height_regime: S+P+2E+Ma S+P+Mz+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1869 + surface: 970.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.257954+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2664 + fields: + parent_id: null + status: 1 + street_number: '60' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429587 + lng: 26.101485 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: AC nr.679/2009; PVRTL nr.412/2011 + has_warning_panels: null + year_built: 1880 + surface: 6162.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.357150+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2665 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429521 + lng: 26.102689 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.505013+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2666 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.429549 + lng: 26.102787 + risk_category: RS1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.659769+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2667 + fields: + parent_id: null + status: 1 + street_number: 7 (corp A+B) + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.43047 + lng: 26.099177 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: ruină + has_warning_panels: null + year_built: 1879 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.804159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2668 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430751 + lng: 26.097337 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 1134.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:40.988606+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2669 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B) + address: Strada FRANCEZĂ + county: București + locality: Sector 3 + lat: 44.430439 + lng: 26.099441 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 4356.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:41.199490+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2670 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448502 + lng: 26.084531 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 280.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:41.387885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2671 + fields: + parent_id: null + status: 1 + street_number: 14 (corp B) + address: Strada FRUMOASA + county: București + locality: Sector 1 + lat: 44.448466 + lng: 26.086315 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:41.516475+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2672 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448343 + lng: 26.0849 + risk_category: U2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 560.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:41.658163+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2673 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448107 + lng: 26.08513 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 660.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:41.839616+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2674 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448262 + lng: 26.085704 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 645.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.076314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2675 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448396 + lng: 26.086008 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 507.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.179631+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2676 + fields: + parent_id: null + status: 1 + street_number: 35 (corp A) + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.448463 + lng: 26.086161 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 222.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.269761+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2677 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada FRUMOASĂ + county: București + locality: Sector 1 + lat: 44.449134 + lng: 26.087694 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 287.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.405167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2678 + fields: + parent_id: null + status: 1 + street_number: 12 (7) + address: Strada GABROVENI (colț cu Strada COVACI) + county: București + locality: Sector 3 + lat: 44.43128348 + lng: 26.10214054 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ioan VARSA + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 5734.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.537274+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2679 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B) + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431325 + lng: 26.101929 + risk_category: RS1 + height_regime: S+P+3E+Ma; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 881.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.651591+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2680 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431065 + lng: 26.102225 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.799450+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2681 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431024 + lng: 26.102374 + risk_category: U4 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Constantin PAVEL + observations: Încadrare în clasă de risc seismic în anul 2015 + has_warning_panels: null + year_built: 1884 + surface: 400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:42.964661+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2682 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431 + lng: 26.102472 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: Încadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1885 + surface: 1164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:43.143337+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2683 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431522 + lng: 26.100958 + risk_category: U3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Maria DARIE + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1940 + surface: 2396.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:43.348056+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2684 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.430924 + lng: 26.102596 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1850 + surface: 476.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:43.589193+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2685 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.430868 + lng: 26.102718 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: Reîncadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1870 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:43.708966+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2686 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431479 + lng: 26.101715 + risk_category: N/A + height_regime: S+P+2 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:43.841244+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2687 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431554 + lng: 26.101764 + risk_category: N/A + height_regime: S+P+2 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.001871+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2688 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431204 + lng: 26.1026419 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: AC nr.867/2009 PVRTL nr.162/2010 + has_warning_panels: null + year_built: 1940 + surface: 255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.262239+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2689 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431234 + lng: 26.102819 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 111.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.415913+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2690 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431119 + lng: 26.102913 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.589701+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2691 + fields: + parent_id: null + status: 1 + street_number: 6÷8 + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.431262 + lng: 26.101667 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mihai VOICULESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul majorităţii + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Laurenţiu SPOIALA) + has_warning_panels: null + year_built: 1890 + surface: 2327.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.756056+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2692 + fields: + parent_id: null + status: 1 + street_number: 61 (corp A1+A2+B) + address: Strada GABROVENI + county: București + locality: Sector 3 + lat: 44.430895 + lng: 26.103271 + risk_category: RS2 + height_regime: S+P+7E; S+P+7E; S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 788.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:44.868185+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2693 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada GALA GALACTION + county: București + locality: Sector 1 + lat: 44.457843 + lng: 26.071437 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban AENLIU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 160.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:45.023354+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2694 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada GALA GALACTION + county: București + locality: Sector 1 + lat: 44.458952 + lng: 26.072499 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban AENLIU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 116.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:45.267899+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2695 + fields: + parent_id: null + status: 1 + street_number: 26A + address: Strada GARIBALDI + county: București + locality: Sector 2 + lat: 44.466616 + lng: 26.106603 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1264.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:45.477906+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2696 + fields: + parent_id: null + status: 1 + street_number: 2÷4 (bloc C) + address: Strada GĂRII DE NORD + county: București + locality: Sector 1 + lat: 44.4443167 + lng: 26.0791748 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 276 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 15129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:45.757546+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2697 + fields: + parent_id: null + status: 1 + street_number: 6÷8 (bloc A, corp anexă, sc.2+3+4+5+6) + address: Strada GĂRII DE NORD + county: București + locality: Sector 1 + lat: 44.444358 + lng: 26.079074 + risk_category: U3 + height_regime: S+P+M+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 91 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Emilian TITARU + observations: Corpul principal este încadrat în clasa de risc seismic RsI (exceptând + scara 1 încadrată în clasa de risc seismic RsII) + has_warning_panels: null + year_built: 1959 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:45.894097+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2698 + fields: + parent_id: null + status: 1 + street_number: 6÷8 (bloc A, corp principal, sc.1) + address: Strada GĂRII DE NORD + county: București + locality: Sector 1 + lat: 44.445758 + lng: 26.07691226 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 63 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ioan Mihai PAUL + observations: Reîncadrare în clasă de risc seismic în anul 2016 (corpul principal + a fost încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. Emilian + ŢIŢARU); corpul anexă este încadrat în clasa de risc seismic RsIII + has_warning_panels: null + year_built: 1959 + surface: 215.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.019713+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2699 + fields: + parent_id: null + status: 1 + street_number: 6÷8 (bloc A, corp principal, sc.2+3+4+5+6) + address: Strada GĂRII DE NORD + county: București + locality: Sector 1 + lat: 44.444358 + lng: 26.079074 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 351 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Emilian TITARU + observations: Corpul anexă este încadrat în clasa de risc seismic RsIII; scara + 1 este încadrată în clasa de risc seismic RsII + has_warning_panels: null + year_built: 1959 + surface: 1075.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.198610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2700 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A+B) + address: Strada GAZELEI + county: București + locality: Sector 4 + lat: 44.41914 + lng: 26.088812 + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 333.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.398358+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2701 + fields: + parent_id: null + status: 1 + street_number: 32 (corp A+B+C+D) + address: Strada GAZELEI + county: București + locality: Sector 4 + lat: 44.420181 + lng: 26.088841 + risk_category: RS3 + height_regime: S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.586719+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2702 + fields: + parent_id: null + status: 1 + street_number: 35 (corp A+B+C) + address: Strada GAZELEI + county: București + locality: Sector 4 + lat: 44.419189 + lng: 26.088936 + risk_category: RS2 + height_regime: S+P+1E;S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.775538+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2703 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada GAZELEI + county: București + locality: Sector 4 + lat: 44.418627 + lng: 26.08927 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.909327+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2704 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.443036 + lng: 26.096806 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1331.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:46.998812+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2705 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.443974 + lng: 26.09788 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 2909.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.127217+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2706 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A) + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.44226347 + lng: 26.0948321 + risk_category: U2 + height_regime: S+P+1E+Ma+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1910 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.252752+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2707 + fields: + parent_id: null + status: 1 + street_number: 5 (corp B+C) + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.442921 + lng: 26.096755 + risk_category: U1 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Barbu VIERESCU + observations: Încadrare în clasă de risc seismic în anii 2007 / 2010; corpurile + B şi C propuse pentru demolare + has_warning_panels: null + year_built: 1910 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.392839+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2708 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.442449 + lng: 26.095422 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 4496.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.498855+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2709 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada GEORGE ENESCU + county: București + locality: Sector 1 + lat: 44.442499 + lng: 26.095608 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 116.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.708198+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2710 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada GEORGE MURGOCI + county: București + locality: Sector 4 + lat: 44.419344 + lng: 26.089735 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1901 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:47.941078+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2711 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada GEORGE MURGOCI + county: București + locality: Sector 4 + lat: 44.419092 + lng: 26.089732 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:48.077225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2712 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada GEORGE MURGOCI + county: București + locality: Sector 4 + lat: 44.418959 + lng: 26.089631 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:48.217455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2713 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B) + address: Strada GEORGE MURGOCI + county: București + locality: Sector 4 + lat: 44.418957 + lng: 26.089505 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 152.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:48.420195+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2714 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada GEORGES BIZET + county: București + locality: Sector 2 + lat: 44.466711 + lng: 26.105279 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1950 + surface: 144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:48.600901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2715 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada GEORGES CLEMENCEAU + county: București + locality: Sector 1 + lat: 44.442003 + lng: 26.096475 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae GHITA + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1547.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:48.867079+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2716 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada GHEORGHE BRĂTIANU + county: București + locality: Sector 1 + lat: 44.461099 + lng: 26.082996 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.102688+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2717 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada GHEORGHE CANTACUZINO + county: București + locality: Sector 2 + lat: 44.444359 + lng: 26.104271 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.225919+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2718 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada GHEORGHE LAZĂR + county: București + locality: Sector 1 + lat: 44.4367719 + lng: 26.0861436 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 184.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.359764+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2719 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada GHEORGHE LAZĂR + county: București + locality: Sector 1 + lat: 44.4371518 + lng: 26.0862695 + risk_category: U2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 250.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.478265+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2720 + fields: + parent_id: null + status: 1 + street_number: 9A÷9B + address: Strada GHEORGHE LAZAR + county: București + locality: Sector 1 + lat: 44.436959 + lng: 26.086165 + risk_category: RS3 + height_regime: S+P+2E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 220.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.582292+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2721 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada GHEORGHE MÂNDREA + county: București + locality: Sector 2 + lat: 44.433251 + lng: 26.139926 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Octavian MANOIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 460.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.709618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2722 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada GHEORGHE MANEA + county: București + locality: Sector 3 + lat: 44.4245522 + lng: 26.1264177 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:49.870242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2723 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada GHEORGHE MANEA + county: București + locality: Sector 3 + lat: 44.424663 + lng: 26.1265362 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: PVRTL nr.233/2007 + has_warning_panels: null + year_built: 1936 + surface: 672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.111348+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2724 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada GHEORGHE MANU + county: București + locality: Sector 1 + lat: 44.447911 + lng: 26.088069 + risk_category: RS2 + height_regime: S+Ds+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 1425.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.251235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2725 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada GHEORGHE MANU + county: București + locality: Sector 1 + lat: 44.448121 + lng: 26.088453 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Cătălin ȘTEFAN + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1900 + surface: 114.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.386519+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2726 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada GHEORGHE MANU + county: București + locality: Sector 1 + lat: 44.448862 + lng: 26.09025 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 776.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.528115+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2727 + fields: + parent_id: null + status: 1 + street_number: 39÷43 (bloc G15) + address: Strada GHEORGHE NEGEL + county: București + locality: Sector 6 + lat: 44.424907 + lng: 26.059342 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1951 + surface: 290.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.650621+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2728 + fields: + parent_id: null + status: 1 + street_number: 14A (bloc 9A) + address: Strada GHEORGHE PETRAŞCU + county: București + locality: Sector 3 + lat: 44.42976055 + lng: 26.15103647 + risk_category: U2 + height_regime: P+9E+1E retras + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2013 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1964 + surface: 354.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:50.843067+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2729 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada GHEORGHE POLIZU + county: București + locality: Sector 1 + lat: 44.447451 + lng: 26.079546 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.068708+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2730 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.440821 + lng: 26.120713 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 426.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.301945+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2731 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.441531 + lng: 26.121756 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 440.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.417114+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2732 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.441808 + lng: 26.122147 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 334.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.514201+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2733 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.442202 + lng: 26.122935 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 468.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.633349+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2734 + fields: + parent_id: null + status: 1 + street_number: 43÷45 (corp A+B) + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.442477 + lng: 26.123432 + risk_category: U2 + height_regime: S+P+4E ;S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 1315.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.792314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2735 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.443269 + lng: 26.124919 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 725.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:51.973679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2736 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada GHEORGHE POP DE BASEŞTI + county: București + locality: Sector 2 + lat: 44.441048 + lng: 26.121254 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 696.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:52.192905+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2737 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.421059 + lng: 26.097113 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 228.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:52.436175+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2738 + fields: + parent_id: null + status: 1 + street_number: 18 (corp A+B) + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.420528 + lng: 26.097519 + risk_category: RS3 + height_regime: S+P; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 279.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:52.569655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2739 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.420203 + lng: 26.097892 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:52.687396+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2740 + fields: + parent_id: null + status: 1 + street_number: 25 (corp A+B) + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.420421 + lng: 26.097802 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 56.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:52.845560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2741 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.42002 + lng: 26.098098 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1916 + surface: 334.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.017064+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2742 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada GHEORGHE PREOŢESCU + county: București + locality: Sector 4 + lat: 44.420259 + lng: 26.09799 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 510.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.209072+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2743 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada GHIOCEI + county: București + locality: Sector 2 + lat: 44.451715 + lng: 26.109105 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ramiro SOFRONIE + observations: AC nr.194/12”G”/2015 PVRTL nr.40705/2018 + has_warning_panels: null + year_built: 1940 + surface: 358.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.466433+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2744 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 46) + address: Strada GHIRLANDEI + county: București + locality: Sector 6 + lat: 44.43778 + lng: 26.020828 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 60 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 525.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.610080+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2745 + fields: + parent_id: null + status: 1 + street_number: 9 (bloc 43) + address: Strada GHIRLANDEI + county: București + locality: Sector 6 + lat: 44.437978 + lng: 26.018985 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.723979+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2746 + fields: + parent_id: null + status: 1 + street_number: 9A (bloc 44) + address: Strada GHIRLANDEI + county: București + locality: Sector 6 + lat: 44.439355 + lng: 26.013294 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:53.885283+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2747 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada GIACOMO PUCCINI + county: București + locality: Sector 2 + lat: 44.462838 + lng: 26.102297 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 970.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.170912+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2748 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada GINA PATRICHI (fostă Strada ORLANDO) + county: București + locality: Sector 1 + lat: 44.4494853 + lng: 26.0886453 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 15.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.340071+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2749 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada GINA PATRICHI (fostă Strada ORLANDO) + county: București + locality: Sector 1 + lat: 44.44942 + lng: 26.088991 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1906 + surface: 430.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.563767+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2750 + fields: + parent_id: null + status: 1 + street_number: 6A + address: Strada GINA PATRICHI (fostă Strada ORLANDO) + county: București + locality: Sector 1 + lat: 44.449437 + lng: 26.089374 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 794.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.691409+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2751 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada GIOACCHINO ROSSINI + county: București + locality: Sector 2 + lat: 44.460774 + lng: 26.105097 + risk_category: RS2 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 198.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.779182+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2752 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada GION IONESCU + county: București + locality: Sector 3 + lat: 44.432759 + lng: 26.112339 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 240 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1944.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:54.889470+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2753 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada GLADIOLELOR + county: București + locality: Sector 4 + lat: 44.4240262 + lng: 26.0919696 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.037330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2754 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada GRĂDINA CU CAI + county: București + locality: Sector 5 + lat: 44.4338989 + lng: 26.086737 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.215332+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2755 + fields: + parent_id: null + status: 1 + street_number: '100' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.452006 + lng: 26.097618 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1975.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.473724+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2756 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451641 + lng: 26.093994 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 650.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.684767+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2757 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451622 + lng: 26.094524 + risk_category: U1 + height_regime: S+P+1E; S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan CAPATANA + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 1395.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.809214+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2758 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451871 + lng: 26.095724 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1944 + surface: 605.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:55.916808+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2759 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451717 + lng: 26.095288 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 179.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.079874+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2760 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451745 + lng: 26.095487 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Paul IOAN + observations: AC nr.5/1/A/46921/2006 PVRTL nr.1/2008 + has_warning_panels: null + year_built: 1930 + surface: 115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.307093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2761 + fields: + parent_id: null + status: 1 + street_number: '82' + address: Strada GRIGORE ALEXANDRESCU + county: București + locality: Sector 1 + lat: 44.451797 + lng: 26.095851 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 1437.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.567316+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2762 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada GRIGORE COBĂLCESCU (hotel "TRIANON") + county: București + locality: Sector 1 + lat: 44.4372942 + lng: 26.0870369 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Augustin NĂSTASE + observations: AC nr.534/81/C/15440/2004; PVRTL nr.1/2006 + has_warning_panels: null + year_built: 1959 + surface: 124.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.749104+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2763 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.437763 + lng: 26.08659 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1891 + surface: 765.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.889592+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2764 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.437683 + lng: 26.086534 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:56.983638+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2765 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.43792 + lng: 26.08614 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 659.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.071341+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2766 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438011 + lng: 26.08587 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.174746+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2767 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438066 + lng: 26.085414 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1905 + surface: 739.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.323820+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2768 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438119 + lng: 26.085256 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 11.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.453694+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2769 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438554 + lng: 26.084375 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1907 + surface: 682.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.555948+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2770 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada GRIGORE COBALCESCU + county: București + locality: Sector 1 + lat: 44.438706 + lng: 26.083962 + risk_category: N/A + height_regime: S+P+2 + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.654376+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2771 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438293 + lng: 26.084799 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1881 + surface: 350.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.754418+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2772 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438856 + lng: 26.083549 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 183.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.857665+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2773 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438932 + lng: 26.083343 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 122.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:57.978471+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2774 + fields: + parent_id: null + status: 1 + street_number: 41 (corp B) + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438474 + lng: 26.084317 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 235.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.075804+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2775 + fields: + parent_id: null + status: 1 + street_number: 43A (corp B) + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438593 + lng: 26.083993 + risk_category: U1 + height_regime: P+2E+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 872.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.188900+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2776 + fields: + parent_id: null + status: 1 + street_number: 45 (corp A) + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.4385199 + lng: 26.0832536 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 872.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.339864+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2777 + fields: + parent_id: null + status: 1 + street_number: 45 (corp B) + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.4385199 + lng: 26.0832536 + risk_category: RS2 + height_regime: '' + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.452704+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2778 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada GRIGORE COBALCESCU + county: București + locality: Sector 1 + lat: 44.439154 + lng: 26.082723 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.582655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2779 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.438949 + lng: 26.083019 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Serban PĂUNESCU + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1922 + surface: 492.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.748093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2780 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.437284 + lng: 26.087669 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 400.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:58.944572+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2781 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.439063 + lng: 26.082695 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 828.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.159401+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2782 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.439345 + lng: 26.082617 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan GHEORGHE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 836.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.291747+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2783 + fields: + parent_id: null + status: 1 + street_number: '56' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.439372 + lng: 26.082473 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan GHEORGHE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 185.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.417689+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2784 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.437264 + lng: 26.088009 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1903 + surface: 2283.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.585489+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2785 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.437384 + lng: 26.087386 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 776.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.752576+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2786 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada GRIGORE COBĂLCESCU + county: București + locality: Sector 1 + lat: 44.43743 + lng: 26.087536 + risk_category: RS2 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 570.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:47:59.920861+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2787 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada GRIGORE MOISIL + county: București + locality: Sector 2 + lat: 44.463432 + lng: 26.118133 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 132 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: 13128.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.194349+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2788 + fields: + parent_id: null + status: 1 + street_number: 19 (corp A+B) + address: Strada GRIGORE RĂDUCANU + county: București + locality: Sector 1 + lat: 44.454792 + lng: 26.074915 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 190.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.337020+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2789 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada GRIGORE RĂDUCANU + county: București + locality: Sector 1 + lat: 44.454619 + lng: 26.074719 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 257.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.465408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2790 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.43372726 + lng: 26.09099007 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.615064+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2791 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.433724 + lng: 26.091008 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.768816+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2792 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.434072 + lng: 26.089914 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:00.990935+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2793 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.433887 + lng: 26.091722 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban STANESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:01.273312+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2794 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.433842 + lng: 26.091747 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:01.420780+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2795 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada GUTEMBERG + county: București + locality: Sector 5 + lat: 44.43372726 + lng: 26.09099007 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:01.602577+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2796 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada HAGA + county: București + locality: Sector 1 + lat: 44.457903 + lng: 26.093789 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 392.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:01.734761+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2797 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada HAGIULUI + county: București + locality: Sector 2 + lat: 44.433032 + lng: 26.122203 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:01.946803+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2798 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.429549 + lng: 26.100578 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:02.182579+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2799 + fields: + parent_id: null + status: 1 + street_number: 13÷15 + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.4292577 + lng: 26.1025547 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU Mihai URSĂCHESCU Octavian MĂNOIU + observations: CONSOLIDAT PARŢIAL ! (lucrări de consolidare executate la subsolul + şi parterul imobilului) AC nr.225/2004 şi nr.24/2008 PVRTL nr.186/2004 şi nr.508/2008 + has_warning_panels: null + year_built: 1880 + surface: 640.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:02.436158+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2800 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.4293295 + lng: 26.1028979 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Vasile BERBECI + observations: AC nr.230/2009 PVRTL nr.405/2010 + has_warning_panels: null + year_built: 1890 + surface: 116.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:02.600117+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2801 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.4295384 + lng: 26.1007879 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 716.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:02.802016+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2802 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.4295739 + lng: 26.1010359 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: AC nr.5H/1999. nr.275/2003. nr.1379/2005. nr.4/2008 PVRTL nr.414/2010 + has_warning_panels: null + year_built: 1880 + surface: 328.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:02.953205+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2803 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada HALELOR + county: București + locality: Sector 3 + lat: 44.4295257 + lng: 26.1012324 + risk_category: C + height_regime: S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: AC nr.854/2006 PVRTL nr.262/2006 + has_warning_panels: null + year_built: 1890 + surface: 1885.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.112907+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2804 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada HALMEU + county: București + locality: Sector 2 + lat: 44.453926 + lng: 26.121943 + risk_category: RS1 + height_regime: S+Ds+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.337321+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2805 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada HARALAMBIE BOTESCU + county: București + locality: Sector 5 + lat: 44.4060878 + lng: 26.0586723 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.524034+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2806 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada HARALAMBIE BOTESCU + county: București + locality: Sector 5 + lat: 44.4053692 + lng: 26.0598572 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.715155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2807 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada HÂRJEU + county: București + locality: Sector 2 + lat: 44.433304 + lng: 26.1391 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.822581+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2808 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada HENRI COANDĂ + county: București + locality: Sector 1 + lat: 44.448822 + lng: 26.091727 + risk_category: U2 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 916.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:03.947540+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2809 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada HENRI MATHIAS BERTHELOT + county: București + locality: Sector 1 + lat: 44.441828 + lng: 26.089735 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 381.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.079532+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2810 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada HENRI MATHIAS BERTHELOT + county: București + locality: Sector 1 + lat: 44.441277 + lng: 26.088142 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 6392.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.286471+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2811 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada HENRI MATHIAS BERTHELOT + county: București + locality: Sector 1 + lat: 44.44047445 + lng: 26.08569492 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.462294+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2812 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada HENRI MATHIAS BERTHELOT + county: București + locality: Sector 1 + lat: 44.44051648 + lng: 26.08545943 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.588523+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2813 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc 13) + address: Strada HERŢA + county: București + locality: Sector 2 + lat: 44.43982 + lng: 26.155661 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1980 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.725743+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2814 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada HORAŢIU + county: București + locality: Sector 1 + lat: 44.443419 + lng: 26.082117 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea IONESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:04.867887+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2815 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada HORATIU + county: București + locality: Sector 1 + lat: 44.443736 + lng: 26.082954 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.004042+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2816 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada HOREI + county: București + locality: Sector 2 + lat: 44.441058 + lng: 26.124177 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.147026+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2817 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A) + address: Strada HOREI + county: București + locality: Sector 2 + lat: 44.442337 + lng: 26.124412 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea VASILIU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.344955+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2818 + fields: + parent_id: null + status: 1 + street_number: 5bis (corp A+B) + address: Strada HOREI + county: București + locality: Sector 2 + lat: 44.4405252 + lng: 26.1241957 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.554212+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2819 + fields: + parent_id: null + status: 1 + street_number: 7bis + address: Strada HOREI + county: București + locality: Sector 2 + lat: 44.4401516 + lng: 26.124156 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.730243+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2820 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada HOREI + county: București + locality: Sector 2 + lat: 44.440618 + lng: 26.124243 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.869689+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2821 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada HRISOVULUI + county: București + locality: Sector 1 + lat: 44.480098 + lng: 26.047738 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Virgil FIERBINTEANU + observations: '' + has_warning_panels: null + year_built: 1957 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:05.998592+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2822 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada HRISOVULUI + county: București + locality: Sector 1 + lat: 44.480219 + lng: 26.046185 + risk_category: N/A + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1961 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:06.139714+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2823 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada IACOB FELIX + county: București + locality: Sector 1 + lat: 44.448773 + lng: 26.081606 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Maria GABOR + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 569.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:06.338992+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2824 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada IACOB FELIX + county: București + locality: Sector 1 + lat: 44.448932 + lng: 26.081703 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1919 + surface: 17.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:06.599679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2825 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada IACOB FELIX + county: București + locality: Sector 1 + lat: 44.448478 + lng: 26.08166 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2005 + certified_expert: Anton SUITARIU + observations: Încadrare în clasă de risc seismic în anul 2005 + has_warning_panels: null + year_built: 1950 + surface: 912.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:06.809392+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2826 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Strada IACOB FELIX + county: București + locality: Sector 1 + lat: 44.454798 + lng: 26.080355 + risk_category: RS2 + height_regime: S+P+1…2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:06.911649+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2827 + fields: + parent_id: null + status: 1 + street_number: 28 (corp C) + address: Strada IACOB NEGRUZZI + county: București + locality: Sector 1 + lat: 44.450011 + lng: 26.074777 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter BOGDAN + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.006609+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2828 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada IACOB NEGRUZZI + county: București + locality: Sector 1 + lat: 44.450096 + lng: 26.074886 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1898 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.109497+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2829 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada IACOB NEGRUZZI + county: București + locality: Sector 1 + lat: 44.450181 + lng: 26.074995 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 746.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.262125+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2830 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada IANCU CAPITANU + county: București + locality: Sector 2 + lat: 44.442513 + lng: 26.121177 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2015 + has_warning_panels: null + year_built: 1940 + surface: 480.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.421660+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2831 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada IANCU CAVALER DE FLONDOR + county: București + locality: Sector 2 + lat: 44.439726 + lng: 26.120979 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.682450+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2832 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.444257 + lng: 26.108482 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 387.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:07.903306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2833 + fields: + parent_id: null + status: 1 + street_number: 38÷38A (corp B+C) + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.4444936 + lng: 26.108838 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.020407+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2834 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.444712 + lng: 26.10899 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.124101+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2835 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.446523 + lng: 26.109919 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.303876+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2836 + fields: + parent_id: null + status: 1 + street_number: 69 (corp B+C) + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.4476059 + lng: 26.110284 + risk_category: U2 + height_regime: S+P+1E; S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Șerban PĂUNESCU + observations: Încadrare în clasă de risc seismic în anul 2006 + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.486952+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2837 + fields: + parent_id: null + status: 1 + street_number: 8 (corp D) + address: Strada ICOANEI + county: București + locality: Sector 2 + lat: 44.442825 + lng: 26.105889 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.722164+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2838 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4248117 + lng: 26.1001356 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:08.945326+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2839 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.42436 + lng: 26.0997349 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: BALAN I. CRISTIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.090214+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2840 + fields: + parent_id: null + status: 1 + street_number: 20 (corp A+B+C+D+E+F) + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.424521 + lng: 26.099529 + risk_category: RS3 + height_regime: S+P+1E;S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.190613+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2841 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4251634 + lng: 26.1012331 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.301729+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2842 + fields: + parent_id: null + status: 1 + street_number: 34 (corp C) + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4245049 + lng: 26.0996109 + risk_category: U2 + height_regime: Sparțial+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Adrian IORDĂCHESCU + observations: Reîncadrare în clasă de risc seismic în anul 2017 + acordul coproprietarului + (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat M.D.R.A.P. + Constantin NICUȚ) + has_warning_panels: null + year_built: 1906 + surface: 445.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.423035+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2843 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.423705 + lng: 26.100055 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: AC nr.472/2011 AC nr.687/2012 PVRTL nr.1112533/2012 + has_warning_panels: null + year_built: 1885 + surface: 580.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.574209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2844 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4227075 + lng: 26.1009995 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.791644+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2845 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.422532 + lng: 26.101216 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:09.975976+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2846 + fields: + parent_id: null + status: 1 + street_number: 46 (corp A+B) + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.422713 + lng: 26.1007471 + risk_category: RS1 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1892 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.154077+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2847 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4223927 + lng: 26.1012279 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.263711+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2848 + fields: + parent_id: null + status: 1 + street_number: 48 (corp A+B+C) + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.4225331 + lng: 26.1007823 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1909 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.401198+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2849 + fields: + parent_id: null + status: 1 + street_number: 50 (corp A+B) + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.422366 + lng: 26.100849 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.567873+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2850 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada IENACHIŢĂ VĂCĂRESCU + county: București + locality: Sector 4 + lat: 44.425065 + lng: 26.1005839 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1840 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.764121+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2851 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada IEREMIA GRIGORESCU (Teatrul de animație “ȚĂNDĂRICĂ”) + county: București + locality: Sector 1 + lat: 44.4452844 + lng: 26.1010131 + risk_category: U3 + height_regime: S partial+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai VOICULESCU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 4.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:10.945743+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2852 + fields: + parent_id: null + status: 1 + street_number: 17 (corp A+B) + address: Strada ILARIE CHENDI + county: București + locality: Sector 2 + lat: 44.439799 + lng: 26.131662 + risk_category: U1 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 790.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.116003+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2853 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada ILARIE CHENDI + county: București + locality: Sector 2 + lat: 44.440546 + lng: 26.132294 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.300226+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2854 + fields: + parent_id: null + status: 1 + street_number: 2 (1) + address: Strada ILFOV (colț cu Strada MIHAI VODĂ) + county: București + locality: Sector 5 + lat: 44.4328938 + lng: 26.0951938 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1894 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.403297+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2855 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada ILFOV + county: București + locality: Sector 5 + lat: 44.432181 + lng: 26.096023 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 571.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.502676+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2856 + fields: + parent_id: null + status: 1 + street_number: 1B + address: Strada ILFOV + county: București + locality: Sector 5 + lat: 44.432181 + lng: 26.096023 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 571.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.647143+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2857 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ILICI PIOTR CEAIKOVSKI + county: București + locality: Sector 2 + lat: 44.46576 + lng: 26.104923 + risk_category: N/A + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1959 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.785331+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2858 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada INIŞOR + county: București + locality: Sector 2 + lat: 44.436213 + lng: 26.131018 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:11.962210+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2859 + fields: + parent_id: null + status: 1 + street_number: 22 (corp A+B) + address: Strada ÎNVINGĂTORILOR + county: București + locality: Sector 3 + lat: 44.429845 + lng: 26.130081 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Marian ELEFTERESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.146978+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2860 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada IOAN BUDAI DELEANU + county: București + locality: Sector 4 + lat: 44.4214636 + lng: 26.1011601 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 111.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.272338+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2861 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada IOAN BUDAI DELEANU + county: București + locality: Sector 4 + lat: 44.4213091 + lng: 26.1006941 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.399957+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2862 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada IOAN BUDAI DELEANU + county: București + locality: Sector 4 + lat: 44.4211871 + lng: 26.102138 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.577067+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2863 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada IOAN FILITTI + county: București + locality: Sector 3 + lat: 44.430305 + lng: 26.097831 + risk_category: RS1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1902 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.689310+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2864 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada IOAN FILITTI + county: București + locality: Sector 3 + lat: 44.430592 + lng: 26.097241 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.813122+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2865 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada IOAN FILITTI + county: București + locality: Sector 3 + lat: 44.430334 + lng: 26.097366 + risk_category: U1 + height_regime: P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe DRUGEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 169.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:12.996940+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2866 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada IOAN FILITTI + county: București + locality: Sector 3 + lat: 44.43037 + lng: 26.09757 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.186901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2867 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada IOAN VODA CARAGEA + county: București + locality: Sector 1 + lat: 44.4486131 + lng: 26.1011513 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 1245.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.302293+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2868 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada IOAN VODA CARAGEA + county: București + locality: Sector 1 + lat: 44.450463 + lng: 26.10072 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 670.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.409673+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2869 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada IOAN VODA CARAGEA + county: București + locality: Sector 1 + lat: 44.4488229 + lng: 26.1009465 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 867.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.589073+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2870 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.442119 + lng: 26.125542 + risk_category: RS2 + height_regime: S+P+Mz+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.740887+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2871 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B+C+G+F) + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.4416133 + lng: 26.1257161 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:13.875728+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2872 + fields: + parent_id: null + status: 1 + street_number: 11 (corp A+B) + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.441386 + lng: 26.126042 + risk_category: RS3 + height_regime: S+P+1E+Ma;S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.001645+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2873 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.440945 + lng: 26.126341 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1944 + surface: 496.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.197421+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2874 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.440776 + lng: 26.126315 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 585.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.364642+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2875 + fields: + parent_id: null + status: 1 + street_number: 26A + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.440667 + lng: 26.12639 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 667.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.488074+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2876 + fields: + parent_id: null + status: 1 + street_number: 29 (corp A+B) + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.440272 + lng: 26.126803 + risk_category: RS2 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 802.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.614652+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2877 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A+B+C+D) + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.4411747 + lng: 26.1260994 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 135.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.791923+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2878 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.441826 + lng: 26.125741 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 339.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:14.947753+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2879 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B+C+D) + address: Strada ION ANDREESCU + county: București + locality: Sector 2 + lat: 44.4512038 + lng: 26.13389 + risk_category: RS3 + height_regime: S+P;S+P+1E; S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 788.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.086322+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2880 + fields: + parent_id: null + status: 1 + street_number: 8 (bloc OD17) + address: Strada ION BERINDEI + county: București + locality: Sector 2 + lat: 44.459932 + lng: 26.130853 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3146.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.224534+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2881 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.433859 + lng: 26.094747 + risk_category: RS3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1972 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.340113+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2882 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.434001 + lng: 26.094617 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1302.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.464111+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2883 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: 44.435233 + lng: 26.094756 + risk_category: U3 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1934 + surface: 3168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.615610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2884 + fields: + parent_id: null + status: 1 + street_number: 29A + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: 44.436404 + lng: 26.094444 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 45 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 3672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.748015+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2885 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.433562 + lng: 26.094624 + risk_category: U3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 299.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:15.904582+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2886 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1542.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.063859+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2887 + fields: + parent_id: null + status: 1 + street_number: 38A + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2599.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.245554+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2888 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: 44.4379924 + lng: 26.093691 + risk_category: C + height_regime: P+9 + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: PVRTL nr.4349/5081/2007 + has_warning_panels: null + year_built: 1937 + surface: 2532.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.375096+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2889 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: 44.438047 + lng: 26.093739 + risk_category: U1 + height_regime: Ds+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 3237.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.596149+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2890 + fields: + parent_id: null + status: 1 + street_number: 51 (bloc B) + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: 44.435975 + lng: 26.094702 + risk_category: RS2 + height_regime: S+P+8E; S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 70 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 95.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.842269+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2891 + fields: + parent_id: null + status: 1 + street_number: 53A + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: null + lng: null + risk_category: U2 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 43.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:16.949142+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2892 + fields: + parent_id: null + status: 1 + street_number: 53B + address: Strada ION BREZOIANU + county: București + locality: Sector 1 + lat: null + lng: null + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 288.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.044312+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2893 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.433463 + lng: 26.09475 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 29 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.142275+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2894 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.433661 + lng: 26.094749 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.292086+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2895 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada ION BREZOIANU + county: București + locality: Sector 5 + lat: 44.434214 + lng: 26.09453 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ramiro SOFRONIE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.433332+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2896 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada ION CĂLIN + county: București + locality: Sector 2 + lat: 44.44928 + lng: 26.105927 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.623039+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2897 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ION CĂLIN + county: București + locality: Sector 2 + lat: 44.448129 + lng: 26.104885 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:17.804063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2898 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada ION CĂLIN + county: București + locality: Sector 2 + lat: 44.44978 + lng: 26.106167 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.012491+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2899 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A) + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.4391174 + lng: 26.0949898 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 47 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 5891.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.132139+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2900 + fields: + parent_id: null + status: 1 + street_number: 1 (corp B) + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.4375886 + lng: 26.1007147 + risk_category: U3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1957 + surface: 5891.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.290461+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2901 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.437512 + lng: 26.099327 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1909.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.483799+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2902 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.4371947 + lng: 26.0984679 + risk_category: U2 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 1144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.710185+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2903 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.437801 + lng: 26.100828 + risk_category: RS1 + height_regime: S+P+Mz+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 5118.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:18.898394+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2904 + fields: + parent_id: null + status: 1 + street_number: 20A (bloc 18A) + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.43738 + lng: 26.095776 + risk_category: U2 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 2791.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.113754+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2905 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.437381 + lng: 26.095805 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 59 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1583.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.276876+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2906 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.4374592 + lng: 26.0952397 + risk_category: U2 + height_regime: S+P+Mz+15E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 89 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 794.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.386597+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2907 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc 4, sc.1; bloc 5; bloc 6A) + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.438873 + lng: 26.09365 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 3931.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.505806+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2908 + fields: + parent_id: null + status: 1 + street_number: 31 (bloc 4, sc.2+3+4) + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.4392244 + lng: 26.0936159 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1959 + surface: 5789.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.702152+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2909 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada ION CÂMPINEANU + county: București + locality: Sector 1 + lat: 44.437391 + lng: 26.099177 + risk_category: U1 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Valentin GEORGESCU + observations: CONSOLIDAT PARŢIAL ! + has_warning_panels: null + year_built: 1937 + surface: 187.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:19.923290+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2910 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B) + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.4338222 + lng: 26.1059178 + risk_category: C + height_regime: S+P+2E S+P+3E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: '' + observations: AC nr.7F/1994 PVRTL nr.6097/1996 + has_warning_panels: null + year_built: 1918 + surface: 1744.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:20.136594+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2911 + fields: + parent_id: null + status: 1 + street_number: 17 (corp A+B) + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.433629 + lng: 26.106571 + risk_category: RS1 + height_regime: S+P+2E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1878 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:20.319033+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2912 + fields: + parent_id: null + status: 1 + street_number: 19 (corp A+B+C) + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.433946 + lng: 26.106184 + risk_category: RS3 + height_regime: S+P+1E+Pod; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Voicu DORDEA + observations: '' + has_warning_panels: null + year_built: 1878 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:20.435093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2913 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.433782 + lng: 26.104953 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:20.595273+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2914 + fields: + parent_id: null + status: 1 + street_number: 21 (corp A+B+C+D+E) + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.433758 + lng: 26.10596 + risk_category: U1 + height_regime: S+P+2E+Ma S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 2608.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:20.775264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2915 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ION FLORESCU + county: București + locality: Sector 3 + lat: 44.433723 + lng: 26.105949 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.055055+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2916 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada ION GHICA (BIBLIOTECA NAŢIONALĂ A ROMÂNIEI – Sediul central) + county: București + locality: Sector 3 + lat: 44.434035 + lng: 26.101541 + risk_category: U3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2004 + certified_expert: Valentin SEVCENCO + observations: Încadrare în clasă de risc seismic în anul 2004 + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.300172+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2917 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ION GHICA (Cinematograful „PRO”) + county: București + locality: Sector 3 + lat: 44.434035 + lng: 26.101541 + risk_category: U1 + height_regime: P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 53 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mariana STOENESCU; Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 5835.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.408819+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2918 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ION GHICA + county: București + locality: Sector 3 + lat: 44.43426 + lng: 26.10262 + risk_category: RS1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.519144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2919 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.44128 + lng: 26.105583 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.659323+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2920 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.43929 + lng: 26.107552 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:21.841641+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2921 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.440914 + lng: 26.105617 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria DABIJA + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.099647+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2922 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.44195 + lng: 26.10569 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1334.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.327917+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2923 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.439437 + lng: 26.107324 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.468022+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2924 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ION LUCA CARAGIALE + county: București + locality: Sector 2 + lat: 44.439942 + lng: 26.106904 + risk_category: RS2 + height_regime: S+P+1E+Pod; S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Maria DABIJA. Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.564079+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2925 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada ION MAIORESCU + county: București + locality: Sector 2 + lat: 44.445614 + lng: 26.122991 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.672866+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2926 + fields: + parent_id: null + status: 1 + street_number: 59 (corp A+B+C) + address: Strada ION MAIORESCU + county: București + locality: Sector 2 + lat: 44.447098 + lng: 26.124712 + risk_category: RS2 + height_regime: S+P+2E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.806431+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2927 + fields: + parent_id: null + status: 1 + street_number: 61 (corp A+B+C) + address: Strada ION MAIORESCU + county: București + locality: Sector 2 + lat: 44.447195 + lng: 26.124838 + risk_category: RS2 + height_regime: S+P; S+P+1E S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:22.969871+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2928 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ION MAIORESCU + county: București + locality: Sector 2 + lat: 44.444774 + lng: 26.121782 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.175604+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2929 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada ION MINCU + county: București + locality: Sector 1 + lat: 44.459363 + lng: 26.083457 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1115.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.360697+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2930 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada ION NECULCE + county: București + locality: Sector 1 + lat: 44.456978 + lng: 26.073663 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban ALTENLIU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.535213+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2931 + fields: + parent_id: null + status: 1 + street_number: 74 (corp A+B) + address: Strada ION NECULCE + county: București + locality: Sector 1 + lat: 44.45929 + lng: 26.076123 + risk_category: C + height_regime: P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: AC nr.12N/2001 AC nr.27N/2001 PVRTL nr.2108/2005 + has_warning_panels: null + year_built: 1940 + surface: 354.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.650098+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2932 + fields: + parent_id: null + status: 1 + street_number: 74 (corp C) + address: Strada ION NECULCE + county: București + locality: Sector 1 + lat: 44.45929 + lng: 26.076123 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.745473+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2933 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ION NISTOR + county: București + locality: Sector 3 + lat: 44.434761 + lng: 26.101816 + risk_category: RS2 + height_regime: S+P+Mz+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valter DORDEA + observations: '' + has_warning_panels: null + year_built: 1945 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:23.913006+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2934 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada ION NISTOR + county: București + locality: Sector 3 + lat: 44.434654 + lng: 26.101841 + risk_category: U2 + height_regime: 2S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 175.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.114719+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2935 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ION NISTOR + county: București + locality: Sector 3 + lat: 44.434472 + lng: 26.101917 + risk_category: RS3 + height_regime: 2S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1978 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.339956+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2936 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ION OTETELEŞANU + county: București + locality: Sector 1 + lat: 44.436042 + lng: 26.09607 + risk_category: RS2 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 1689.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.557783+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2937 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada ION PUŞCARIU + county: București + locality: Sector 4 + lat: 44.413941 + lng: 26.102206 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.717794+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2938 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ION RACOTEANU + county: București + locality: Sector 3 + lat: 44.426827 + lng: 26.122023 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.834113+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2939 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ION RADOVICI + county: București + locality: Sector 5 + lat: 44.434992 + lng: 26.067325 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laur AGAPI + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:24.979638+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2940 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A+B) + address: Strada ION SLĂTINEANU + county: București + locality: Sector 1 + lat: 44.450329 + lng: 26.096386 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 538.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.207883+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2941 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc 1) + address: Strada IRIMICULUI + county: București + locality: Sector 2 + lat: 44.452795 + lng: 26.1241 + risk_category: RS2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.425295+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2942 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ITALIANĂ + county: București + locality: Sector 2 + lat: 44.4372818 + lng: 26.1095773 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1444.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.584373+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2943 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada ITALIANĂ + county: București + locality: Sector 2 + lat: 44.438357 + lng: 26.105962 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.691641+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2944 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada IULIA HASDEU + county: București + locality: Sector 1 + lat: 44.444682 + lng: 26.082537 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.810566+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2945 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada IULIU BARASCH + county: București + locality: Sector 3 + lat: 44.4293227 + lng: 26.1097231 + risk_category: C + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan STANCIULESCU + observations: PVRTL nr.17/2003 + has_warning_panels: null + year_built: 1936 + surface: 164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:25.917117+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2946 + fields: + parent_id: null + status: 1 + street_number: 29÷31 + address: Strada IVAN PETROVICI PAVLOV + county: București + locality: Sector 1 + lat: 44.465068 + lng: 26.058166 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.039887+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2947 + fields: + parent_id: null + status: 1 + street_number: 33÷35 + address: Strada IVAN PETROVICI PAVLOV + county: București + locality: Sector 1 + lat: 44.465278 + lng: 26.058364 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.218154+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2948 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada IVO ANDRIC + county: București + locality: Sector 3 + lat: 44.4345 + lng: 26.106823 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 243.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.384189+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2949 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada IVO ANDRIC + county: București + locality: Sector 3 + lat: 44.434424 + lng: 26.106419 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1910 + surface: 1476.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.557548+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2950 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada IVO ANDRIC + county: București + locality: Sector 3 + lat: 44.434273 + lng: 26.106514 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: '' + has_warning_panels: null + year_built: 1887 + surface: 641.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.714037+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2951 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada JEAN LOUIS CALDERON („TEATRUL FOARTE MIC”) + county: București + locality: Sector 2 + lat: 44.43929 + lng: 26.105032 + risk_category: U1 + height_regime: S+P+Mz+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU; Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 3745.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.831740+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2952 + fields: + parent_id: null + status: 1 + street_number: 14 (corp A+B) + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.437497 + lng: 26.105737 + risk_category: RS2 + height_regime: S+P+2E+Ma; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:26.939003+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2953 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.439043 + lng: 26.105235 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1108.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.041825+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2954 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.438623 + lng: 26.105405 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.183877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2955 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.439829 + lng: 26.105118 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 3568.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.363699+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2956 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.439936 + lng: 26.105074 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 32 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 2976.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.543810+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2957 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.440625 + lng: 26.104812 + risk_category: RS3 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.674404+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2958 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.44156225 + lng: 26.1043556 + risk_category: U1 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian ŢIŢARU + observations: CONSOLIDAT PARŢIAL ! Obiectiv de investiții preluat de Administrația + Municipală pentru Consolidarea Clădirilor cu Risc Seismic de la Direcția Generală + Investiții (P.M.B.) pentru finalizarea execuției lucrărilor de consolidare. + has_warning_panels: null + year_built: 1935 + surface: 3706.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:27.908638+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2959 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.442334 + lng: 26.104676 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandrina PRETORIAN.Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 2404.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.052637+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2960 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada JEAN LOUIS CALDERON + county: București + locality: Sector 2 + lat: 44.442675 + lng: 26.104989 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 2528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.206972+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2961 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada JOLIOT FREDERIC CURIE + county: București + locality: Sector 5 + lat: 44.430086 + lng: 26.071675 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.401296+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2962 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada JOLIOT FREDERIC CURIE + county: București + locality: Sector 5 + lat: 44.429729 + lng: 26.071477 + risk_category: U1 + height_regime: Ds+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Nicolae ROŞCA + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1935 + surface: 210.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.599722+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2963 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada JOLIOT FREDERIC CURIE + county: București + locality: Sector 5 + lat: 44.430316 + lng: 26.072057 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 480.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.771457+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2964 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada JOSEPH LISTER + county: București + locality: Sector 5 + lat: 44.433982 + lng: 26.077913 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Gheorghe POPESCU + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Nicolae GHIŢĂ) + has_warning_panels: null + year_built: 1934 + surface: 233.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:28.905668+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2965 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada JOSEPH LISTER + county: București + locality: Sector 5 + lat: 44.433009 + lng: 26.077185 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 538.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.063394+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2966 + fields: + parent_id: null + status: 1 + street_number: 5 (corp B) + address: Strada JOSEPH LISTER + county: București + locality: Sector 5 + lat: 44.4338577 + lng: 26.0778746 + risk_category: RS1 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.209494+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2967 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada JUDEŢULUI + county: București + locality: Sector 2 + lat: 44.457356 + lng: 26.114521 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 1662.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.358216+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2968 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada JULES MICHELET + county: București + locality: Sector 1 + lat: 44.444016 + lng: 26.098589 + risk_category: U1 + height_regime: P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae GHITA + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 265.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.537195+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2969 + fields: + parent_id: null + status: 1 + street_number: 15÷17 + address: Strada JULES MICHELET + county: București + locality: Sector 1 + lat: 44.444145 + lng: 26.099846 + risk_category: U3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 3125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.724667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2970 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada JULES MICHELET + county: București + locality: Sector 1 + lat: 44.44419 + lng: 26.100189 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1942.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:29.928249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2971 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada JULES MICHELET + county: București + locality: Sector 1 + lat: 44.444261 + lng: 26.100702 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1552.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.164980+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2972 + fields: + parent_id: null + status: 1 + street_number: 29 (corp A+B) + address: Strada JUSTIŢIEI + county: București + locality: Sector 4 + lat: 44.422469 + lng: 26.094815 + risk_category: U1 + height_regime: S+P; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 529.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.293682+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2973 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada LABIRINT + county: București + locality: Sector 3 + lat: 44.430924 + lng: 26.118861 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.449711+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2974 + fields: + parent_id: null + status: 1 + street_number: '144' + address: Strada LÂNĂRIEI + county: București + locality: Sector 4 + lat: 44.41492844 + lng: 26.1001606 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.612730+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2975 + fields: + parent_id: null + status: 1 + street_number: 144A (corp A+B) + address: Strada LÂNĂRIEI + county: București + locality: Sector 4 + lat: 44.4153589 + lng: 26.1021768 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.758134+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2976 + fields: + parent_id: null + status: 1 + street_number: '146' + address: Strada LÂNĂRIEI + county: București + locality: Sector 4 + lat: 44.414612 + lng: 26.098626 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:30.890626+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2977 + fields: + parent_id: null + status: 1 + street_number: 1÷1B (corp A+B) + address: Strada LANŢULUI + county: București + locality: Sector 5 + lat: 44.424593 + lng: 26.079874 + risk_category: RS2 + height_regime: S+P+Ma;S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.014067+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2978 + fields: + parent_id: null + status: 1 + street_number: 11 (corp A) + address: Strada LATINA + county: București + locality: Sector 2 + lat: 44.439082 + lng: 26.112995 + risk_category: N/A + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mariana STEFANESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.175904+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2979 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada LATINĂ + county: București + locality: Sector 2 + lat: 44.438183 + lng: 26.113963 + risk_category: RS2 + height_regime: S+Ds+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.336500+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2980 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada LEON VODĂ + county: București + locality: Sector 4 + lat: 44.4213163 + lng: 26.1055841 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.468574+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2981 + fields: + parent_id: null + status: 1 + street_number: 18 (corp A+B) + address: Strada LEON VODĂ + county: București + locality: Sector 4 + lat: 44.4211501 + lng: 26.1055306 + risk_category: RS2 + height_regime: S+P; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.629965+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2982 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada LEONIDA VARNALI + county: București + locality: Sector 1 + lat: 44.448628 + lng: 26.080315 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1913 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.757475+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2983 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada LEONIDA VARNALI + county: București + locality: Sector 1 + lat: 44.448738 + lng: 26.080275 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1913 + surface: 449.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:31.866764+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2984 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada LEONIDA + county: București + locality: Sector 2 + lat: 44.448067 + lng: 26.10923 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 453.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.011062+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2985 + fields: + parent_id: null + status: 1 + street_number: 33 (corp A+B) + address: Strada LEONIDA + county: București + locality: Sector 2 + lat: 44.448559 + lng: 26.110407 + risk_category: U3 + height_regime: S+P+2E ;S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 315.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.196866+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2986 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada LICURG + county: București + locality: Sector 2 + lat: 44.439344 + lng: 26.110986 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.357380+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2987 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada LIPOVA + county: București + locality: Sector 1 + lat: 44.441189 + lng: 26.079067 + risk_category: C + height_regime: S+P+1E+mA + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru COMANESCU + observations: AC nr.27L/2000; PVRTL nr.1/2002; Construcție existentă reconstruită + pe amplasament incluzând conservarea fațadei (consolidată Și reconstruită - + structură de rezistență RsIV) + has_warning_panels: null + year_built: 1900 + surface: 320.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.474271+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2988 + fields: + parent_id: null + status: 1 + street_number: 40 (3) + address: Strada LIPSCANI (colț cu Strada GABROVENI) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: C + height_regime: S+P+Mz+1E+Ma; S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU; Mircea NEICU + observations: AC nr.190/1228022/2014; PVRTL nr.1/2015 + has_warning_panels: null + year_built: 1920 + surface: 212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.586483+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2989 + fields: + parent_id: null + status: 1 + street_number: 46 (9) + address: Strada LIPSCANI (colț cu Strada GABROVENI) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU; Mircea MIHĂILESCU + observations: CONSOLIDAT PARŢIAL ! (lucrări de consolidare executate la subsolul + şi parterul imobilului) AC nr.14L/1999 PVRTL nr.1/2001 + has_warning_panels: null + year_built: 1880 + surface: 129.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.720080+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2990 + fields: + parent_id: null + status: 1 + street_number: 76 (39) + address: Strada LIPSCANI (colț cu Strada GABROVENI) + county: București + locality: Sector 3 + lat: null + lng: null + risk_category: C + height_regime: S+P+1E ... 2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: AC nr.81/972959/2011 PVRTL nr.153/2011 + has_warning_panels: null + year_built: 1900 + surface: 682.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:32.865140+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2991 + fields: + parent_id: null + status: 1 + street_number: 80 (43) + address: Strada LIPSCANI (colț cu Strada GABROVENI) + county: București + locality: Sector 3 + lat: 44.433044 + lng: 26.102426 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1875 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.006004+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2992 + fields: + parent_id: null + status: 1 + street_number: 38 (1) + address: Strada LIPSCANI (colț cu Strada SELARI) + county: București + locality: Sector 3 + lat: 44.4304859 + lng: 26.1004521 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin CARP + observations: AC nr.778/1029993/2011 PVRTL nr.1/2015 + has_warning_panels: null + year_built: 1880 + surface: 730.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.169094+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2993 + fields: + parent_id: null + status: 1 + street_number: 14 (5) + address: Strada LIPSCANI (colț cu Strada STAVROPOLEOS) + county: București + locality: Sector 3 + lat: 44.433044 + lng: 26.102426 + risk_category: U3 + height_regime: S+P+2E; S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mircea MIRONESCU + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1900 + surface: 3404.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.357631+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2994 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada LIPSCANI (Librăria „GEORGE COŞBUC”) + county: București + locality: Sector 3 + lat: 44.433044 + lng: 26.102426 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mariana STOENESCU + observations: '' + has_warning_panels: null + year_built: 1884 + surface: 2371.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.501836+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2995 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432332 + lng: 26.097985 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1898 + surface: 336.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.610445+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2996 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432851 + lng: 26.098004 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1898 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.751341+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2997 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.43263 + lng: 26.09828 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1884 + surface: 3171.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:33.883026+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2998 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431961 + lng: 26.100255 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru CISMIGIU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.080695+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 2999 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432184 + lng: 26.100189 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 3438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.289196+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3000 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.43209 + lng: 26.103987 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.512515+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3001 + fields: + parent_id: null + status: 1 + street_number: 31÷33 + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432225 + lng: 26.100385 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 3438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.625238+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3002 + fields: + parent_id: null + status: 1 + street_number: 33 (corp A+B) + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.43204709 + lng: 26.10035862 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Cătălin ȘTEFAN + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 36.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.762331+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3003 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432093 + lng: 26.100724 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:34.894030+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3004 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.432036 + lng: 26.101083 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 27.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.006010+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3005 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431918 + lng: 26.101197 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.187094+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3006 + fields: + parent_id: null + status: 1 + street_number: 48÷50 + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431803 + lng: 26.101427 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae GOSPODINOV + observations: U1 (La cererea proprietarilor expertul a revenit, în anul 2016, + la încadrarea imobilului în categorie de urgenţă) + has_warning_panels: null + year_built: 1900 + surface: 90.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.314732+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3007 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431585 + lng: 26.101433 + risk_category: RS3 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.440864+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3008 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431708 + lng: 26.101543 + risk_category: RS1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.621473+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3009 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.4319066 + lng: 26.1016469 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Nicolae GOSPODINOV + observations: AC nr.655/1208226/2014 PVRTL din 2015 + has_warning_panels: null + year_built: 1912 + surface: 145.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.726476+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3010 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431974 + lng: 26.101749 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Şerban ALTENLIU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 795.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.831372+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3011 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431956 + lng: 26.101964 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1894 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:35.943802+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3012 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431679 + lng: 26.10178 + risk_category: RS1 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.062744+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3013 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada Lipscani + county: București + locality: Sector 3 + lat: 44.43172868 + lng: 26.10186937 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: null + surface: 481.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.193576+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3014 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431773 + lng: 26.102017 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.326456+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3015 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Strada Lipscani + county: București + locality: Sector 3 + lat: 44.43181968 + lng: 26.10296107 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.518371+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3016 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.4319165 + lng: 26.1029816 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: AC nr.35/2004 PVRTL nr.18/4394/2008 + has_warning_panels: null + year_built: 1875 + surface: 380.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.674918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3017 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431772 + lng: 26.102175 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.787667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3018 + fields: + parent_id: null + status: 1 + street_number: '79' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.4319845 + lng: 26.1030178 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: AC nr.446/2004 PVRTL nr.69/2007 + has_warning_panels: null + year_built: 1875 + surface: 475.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.889722+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3019 + fields: + parent_id: null + status: 1 + street_number: '94' + address: Strada LIPSCANI + county: București + locality: Sector 3 + lat: 44.431987 + lng: 26.104137 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian ALTENLIU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:36.994161+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3020 + fields: + parent_id: null + status: 1 + street_number: 20 (corp A+B) + address: Strada LIREI + county: București + locality: Sector 2 + lat: 44.440612 + lng: 26.125675 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.097037+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3021 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc OD7A) + address: Strada LITOVOI VOIEVOD + county: București + locality: Sector 2 + lat: 44.456914 + lng: 26.130985 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 3212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.228269+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3022 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada LIVENI + county: București + locality: Sector 4 + lat: 44.420952 + lng: 26.090377 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.337124+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3023 + fields: + parent_id: null + status: 1 + street_number: 37 (bloc M24) + address: Strada LIVIU REBREANU + county: București + locality: Sector 3 + lat: 44.424585 + lng: 26.175767 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.456015+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3024 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.452701 + lng: 26.120289 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.565232+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3025 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.452977 + lng: 26.120431 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 181.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.699361+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3026 + fields: + parent_id: null + status: 1 + street_number: 19A + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.453529 + lng: 26.120478 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 545.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.859701+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3027 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.453058 + lng: 26.120592 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 945.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:37.955017+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3028 + fields: + parent_id: null + status: 1 + street_number: 22÷24 + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.453326 + lng: 26.120696 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 197.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.058352+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3029 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada LIZEANU + county: București + locality: Sector 2 + lat: 44.453636 + lng: 26.120597 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.212065+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3030 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada LOCOTENENT ILIE CÎMPEANU + county: București + locality: Sector 5 + lat: 44.405677 + lng: 26.0654473 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.349929+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3031 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc S22) + address: Strada LOGOFĂTUL DAN + county: București + locality: Sector 2 + lat: 44.440472 + lng: 26.177965 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dinu CIOBOTARU + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.515113+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3032 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.4402194 + lng: 26.1088813 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1949 + surface: 2375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.659121+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3033 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.4406198 + lng: 26.109991 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.797507+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3034 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.440926 + lng: 26.110359 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:38.937356+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3035 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.4409759 + lng: 26.1104663 + risk_category: RS2 + height_regime: P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ramiro SOFRONIE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 838.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.065540+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3036 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.4422225 + lng: 26.1116413 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 1215.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.192782+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3037 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.440291 + lng: 26.109039 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.303999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3038 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada LOGOFATUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.440145 + lng: 26.10897 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1956 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.449362+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3039 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada LOGOFĂTUL LUCA STROICI + county: București + locality: Sector 2 + lat: 44.4404228 + lng: 26.109513 + risk_category: U1 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 206.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.606583+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3040 + fields: + parent_id: null + status: 1 + street_number: 16÷20 + address: Strada LONDRA + county: București + locality: Sector 1 + lat: 44.454506 + lng: 26.093163 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 104 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU Mariana STOENESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 10322.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.755194+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3041 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada LONDRA + county: București + locality: Sector 1 + lat: 44.454722 + lng: 26.093038 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1313.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:39.925570+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3042 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada LOTRU + county: București + locality: Sector 1 + lat: 44.468732 + lng: 26.056668 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.092363+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3043 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada LOUIS PASTEUR + county: București + locality: Sector 5 + lat: 44.431425 + lng: 26.077006 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.214468+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3044 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada LOUIS PASTEUR + county: București + locality: Sector 5 + lat: 44.4318972 + lng: 26.074997 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Emilian ŢIŢARU + observations: AC nr.787P/2004 PVRTL din 2008 + has_warning_panels: null + year_built: 1936 + surface: 1283.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.333721+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3045 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada LOUIS PASTEUR + county: București + locality: Sector 5 + lat: 44.43205 + lng: 26.073888 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.501419+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3046 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada LOUIS PASTEUR + county: București + locality: Sector 5 + lat: 44.431894 + lng: 26.074403 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 805.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.719436+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3047 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada LOUIS PASTEUR + county: București + locality: Sector 5 + lat: 44.431765 + lng: 26.0727 + risk_category: RS2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NITU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:40.910726+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3048 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada LUCEAFĂRULUI + county: București + locality: Sector 5 + lat: 44.423538 + lng: 26.078118 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.082724+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3049 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada LUDWIG VAN BEETHOVEN + county: București + locality: Sector 2 + lat: 44.462537 + lng: 26.103287 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Helmuth KÖBER + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.211787+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3050 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada LUIGI CAZZAVILLAN + county: București + locality: Sector 1 + lat: 44.443252 + lng: 26.086553 + risk_category: RS1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Maria DABIJA + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 1365.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.341803+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3051 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada LUNEI + county: București + locality: Sector 2 + lat: 44.437912 + lng: 26.115582 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 430.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.464318+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3052 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada LUNEI + county: București + locality: Sector 2 + lat: 44.4375004 + lng: 26.1154208 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 830.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.616376+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3053 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada LUNEI + county: București + locality: Sector 2 + lat: 44.437428 + lng: 26.115542 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 614.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.754122+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3054 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 10) + address: Strada LUNTREI + county: București + locality: Sector 2 + lat: 44.4623144 + lng: 26.1301258 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:41.892754+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3055 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada LUNTREI + county: București + locality: Sector 2 + lat: 44.462652 + lng: 26.129759 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 348 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.024047+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3056 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada LUTERANĂ + county: București + locality: Sector 1 + lat: 44.440977 + lng: 26.092293 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 71 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 7315.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.158955+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3057 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada MACARIE CÂNTĂREŢUL + county: București + locality: Sector 1 + lat: 44.452039 + lng: 26.094707 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ramiro SOFRONIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 525.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.327958+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3058 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada MĂGURA VULTURULUI + county: București + locality: Sector 2 + lat: 44.439929 + lng: 26.13809 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.440367+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3059 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada MAHATMA GANDHI + county: București + locality: Sector 1 + lat: 44.462803 + lng: 26.078797 + risk_category: U3 + height_regime: Ds+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Nicolae STOICA + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1925 + surface: 560.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.560706+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3060 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada MAICA DOMNULUI + county: București + locality: Sector 2 + lat: 44.459794 + lng: 26.11977 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.680994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3061 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada MAICA DOMNULUI + county: București + locality: Sector 2 + lat: 44.460222 + lng: 26.119657 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.833701+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3062 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada MAIOR ALEXANDRU CÎMPEANU + county: București + locality: Sector 1 + lat: 44.4574863 + lng: 26.076924 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 818.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:42.974366+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3063 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada MAIOR ALEXANDRU CÎMPEANU + county: București + locality: Sector 1 + lat: 44.4570772 + lng: 26.0768204 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 649.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.098233+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3064 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada MAIOR ALEXANDRU CÎMPEANU + county: București + locality: Sector 1 + lat: 44.4565676 + lng: 26.0761952 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 549.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.205055+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3065 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada MAIOR ALEXANDRU CÎMPEANU + county: București + locality: Sector 1 + lat: 44.456134 + lng: 26.0754844 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 848.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.356839+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3066 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada MAIOR ALEXANDRU CÎMPEANU + county: București + locality: Sector 1 + lat: 44.4559659 + lng: 26.0753917 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 406.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.496051+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3067 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada MALTOPOL + county: București + locality: Sector 1 + lat: 44.451348 + lng: 26.078129 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.606649+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3068 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MANTULEASA + county: București + locality: Sector 2 + lat: 44.434171 + lng: 26.112352 + risk_category: U3 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 2522.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.754379+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3069 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.4345706 + lng: 26.1126926 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 1308.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:43.935595+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3070 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.436503 + lng: 26.114087 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.111136+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3071 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.436941 + lng: 26.113846 + risk_category: RS2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.326681+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3072 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.436622 + lng: 26.114143 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.486786+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3073 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.437218 + lng: 26.114068 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.598560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3074 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.437301 + lng: 26.114191 + risk_category: RS2 + height_regime: S+P+Mz+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.731284+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3075 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada MÂNTULEASA + county: București + locality: Sector 2 + lat: 44.437469 + lng: 26.114336 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 4232.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:44.860737+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3076 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada MANTULEASA + county: București + locality: Sector 2 + lat: 44.43416 + lng: 26.112305 + risk_category: U3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1771.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.005197+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3077 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada MANTULEASA + county: București + locality: Sector 2 + lat: 44.434399 + lng: 26.112447 + risk_category: U3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 253.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.151077+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3078 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 29) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.4410884 + lng: 26.1742696 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.310856+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3079 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc 24) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.4406156 + lng: 26.176862 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.458504+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3080 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 28) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.441213 + lng: 26.1748425 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.661041+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3081 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 27) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.440911 + lng: 26.1753 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.828921+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3082 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc 26) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.4408282 + lng: 26.1758298 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:45.955526+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3083 + fields: + parent_id: null + status: 1 + street_number: 9 (bloc 25) + address: Strada MARCU ARMAŞU + county: București + locality: Sector 2 + lat: 44.4408846 + lng: 26.1763944 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.058072+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3084 + fields: + parent_id: null + status: 1 + street_number: 19÷21 + address: Strada MARIA HAGI MOSCU + county: București + locality: Sector 1 + lat: 44.454777 + lng: 26.078721 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1950 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.159395+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3085 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442001 + lng: 26.107063 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 34 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 2738.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.263107+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3086 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442165 + lng: 26.107239 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.377155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3087 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442167 + lng: 26.106788 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.478169+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3088 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442194 + lng: 26.106904 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1992 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1536.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.587249+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3089 + fields: + parent_id: null + status: 1 + street_number: 16 (corp A+B) + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442182 + lng: 26.10782 + risk_category: U2 + height_regime: S+P+2E+Ma; S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 147.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.703748+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3090 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442222 + lng: 26.10702 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.834907+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3091 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442188 + lng: 26.108116 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:46.963725+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3092 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442205 + lng: 26.109298 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1239.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.065066+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3093 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442133 + lng: 26.11011 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.165068+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3094 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442284 + lng: 26.108409 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Cristian ENESCU + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1938 + surface: 25.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.313550+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3095 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.441876 + lng: 26.111645 + risk_category: RS1 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Moses DRIMER + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.421509+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3096 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442289 + lng: 26.109598 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.603483+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3097 + fields: + parent_id: null + status: 1 + street_number: '53' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.442075 + lng: 26.111008 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 1887.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.862706+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3098 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.4420143 + lng: 26.1115103 + risk_category: C + height_regime: P+8E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: PVRTL nr.2728/2013 + has_warning_panels: null + year_built: 1934 + surface: 2105.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:47.973602+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3099 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.441889 + lng: 26.112054 + risk_category: N/A + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1918 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:48.118927+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3100 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.441943 + lng: 26.106802 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAVEL + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1941.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:48.296355+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3101 + fields: + parent_id: null + status: 1 + street_number: 8A + address: Strada MARIA ROSETTI + county: București + locality: Sector 2 + lat: 44.441943 + lng: 26.106802 + risk_category: C + height_regime: S+P+5 + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: AC nr. 3R/02.03.1998; PVRTL nr. 1/04.02.2000 + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:48.468817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3102 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada MARIN SERGHIESCU + county: București + locality: Sector 2 + lat: 44.439827 + lng: 26.10949 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:48.613055+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3103 + fields: + parent_id: null + status: 1 + street_number: 6÷8 + address: Strada MARIN SERGHIESCU + county: București + locality: Sector 2 + lat: 44.439885 + lng: 26.109357 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:48.872894+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3104 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.456305 + lng: 26.127696 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.020525+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3105 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.457184 + lng: 26.128421 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.138038+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3106 + fields: + parent_id: null + status: 1 + street_number: 23 (corp A+B) + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.453236 + lng: 26.125174 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.263132+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3107 + fields: + parent_id: null + status: 1 + street_number: 37 (bloc 2) + address: Strada MAȘINA DE PAINE + county: București + locality: Sector 2 + lat: 44.453332 + lng: 26.125209 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.399892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3108 + fields: + parent_id: null + status: 1 + street_number: 39 (bloc OD59A) + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.452943 + lng: 26.1249139 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1970 + surface: 39.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.545379+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3109 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.453467 + lng: 26.124641 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1968 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.710049+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3110 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc R31) + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.4534581 + lng: 26.1257966 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 6746.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.860978+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3111 + fields: + parent_id: null + status: 1 + street_number: 69 (bloc OD23) + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.4575451 + lng: 26.127977 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 176 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 12694.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:49.991818+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3112 + fields: + parent_id: null + status: 1 + street_number: 8 (bloc OD36) + address: Strada MAŞINA DE PÂINE + county: București + locality: Sector 2 + lat: 44.4538409 + lng: 26.1258062 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 39.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.109386+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3113 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada MATACHE DOBRESCU + county: București + locality: Sector 3 + lat: 44.423703 + lng: 26.127029 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai ELEFTERESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.208964+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3114 + fields: + parent_id: null + status: 1 + street_number: 12 (corp A+B) + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.438353 + lng: 26.129346 + risk_category: U1 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 310.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.331526+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3115 + fields: + parent_id: null + status: 1 + street_number: 14 (corp A+B) + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.438424 + lng: 26.129322 + risk_category: RS2 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.490400+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3116 + fields: + parent_id: null + status: 1 + street_number: 23 (corp A+B+C) + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.4387552 + lng: 26.1290826 + risk_category: RS2 + height_regime: S+P+2E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.670086+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3117 + fields: + parent_id: null + status: 1 + street_number: 32÷34 (corp A+B) + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.439061 + lng: 26.12911 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:50.852371+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3118 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.439547 + lng: 26.12897 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.050498+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3119 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.439999 + lng: 26.128711 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.178885+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3120 + fields: + parent_id: null + status: 1 + street_number: 44 (corp C1+C2) + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.440476 + lng: 26.128693 + risk_category: U1 + height_regime: S+P+1E / P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: null + surface: 347.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.293453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3121 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada MĂTĂSARI + county: București + locality: Sector 2 + lat: 44.440786 + lng: 26.128462 + risk_category: RS3 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.432732+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3122 + fields: + parent_id: null + status: 1 + street_number: 31 (corp A+B) + address: Strada MATEI BASARAB + county: București + locality: Sector 3 + lat: 44.430646 + lng: 26.11235 + risk_category: U1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 185.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.570200+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3123 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada MATEI BASARAB + county: București + locality: Sector 3 + lat: 44.430621 + lng: 26.112749 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.757670+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3124 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MATEI MILLO + county: București + locality: Sector 1 + lat: 44.436409 + lng: 26.095752 + risk_category: U2 + height_regime: S+P+Mz+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 39 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 364.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:51.940408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3125 + fields: + parent_id: null + status: 1 + street_number: 103÷113 (bloc O3) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.437786 + lng: 26.132709 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.151478+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3126 + fields: + parent_id: null + status: 1 + street_number: 115÷123 (bloc O2) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.437889 + lng: 26.133494 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.294306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3127 + fields: + parent_id: null + status: 1 + street_number: 125÷133 (bloc O1) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438039 + lng: 26.134281 + risk_category: U3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 132 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 9746.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.391415+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3128 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438616 + lng: 26.12482 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.496110+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3129 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438578 + lng: 26.124542 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 736.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.650059+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3130 + fields: + parent_id: null + status: 1 + street_number: 20A + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438433 + lng: 26.125279 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.840738+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3131 + fields: + parent_id: null + status: 1 + street_number: 35 (corp A+B) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438183 + lng: 26.126911 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:52.959175+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3132 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A+B) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438851 + lng: 26.123057 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.070446+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3133 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.4386 + lng: 26.122932 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.224012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3134 + fields: + parent_id: null + status: 1 + street_number: 62 (corp A+B+C+D) + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.4373976 + lng: 26.1295698 + risk_category: RS2 + height_regime: S+P+1E+Pod; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.346444+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3135 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.437499 + lng: 26.129654 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.453877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3136 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada MATEI VOIEVOD + county: București + locality: Sector 2 + lat: 44.438787 + lng: 26.123462 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.559003+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3137 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada MAXIM GORKI + county: București + locality: Sector 1 + lat: 44.46555 + lng: 26.092332 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 942.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.679085+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3138 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada MAXIM GORKI + county: București + locality: Sector 1 + lat: 44.467186 + lng: 26.090922 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.806010+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3139 + fields: + parent_id: null + status: 1 + street_number: 21 (corp A+B) + address: Strada MAXIMILIAN POPPER + county: București + locality: Sector 3 + lat: 44.427536 + lng: 26.118751 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:53.947641+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3140 + fields: + parent_id: null + status: 1 + street_number: 5÷7 + address: Strada METALURGIEI + county: București + locality: Sector 4 + lat: 44.375554 + lng: 26.120904 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1966 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.093654+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3141 + fields: + parent_id: null + status: 1 + street_number: '89' + address: Strada MIHAI EMINESCU (Teatrul „METROPOLIS”) + county: București + locality: Sector 2 + lat: 44.447254 + lng: 26.108714 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1952 + surface: 1211.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.281335+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3142 + fields: + parent_id: null + status: 1 + street_number: '127' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.446937 + lng: 26.112523 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 930.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.440870+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3143 + fields: + parent_id: null + status: 1 + street_number: '132' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.447064 + lng: 26.109536 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.575358+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3144 + fields: + parent_id: null + status: 1 + street_number: '140' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.447015 + lng: 26.110174 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1949 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.716477+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3145 + fields: + parent_id: null + status: 1 + street_number: '150' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.446911 + lng: 26.11077 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.857877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3146 + fields: + parent_id: null + status: 1 + street_number: '155' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.445772 + lng: 26.116442 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dumitru MARGINEANU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:54.991706+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3147 + fields: + parent_id: null + status: 1 + street_number: '159' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.445626 + lng: 26.116609 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 890.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.162223+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3148 + fields: + parent_id: null + status: 1 + street_number: '166' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.44678 + lng: 26.11158 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.342321+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3149 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.4470997 + lng: 26.0998186 + risk_category: C + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Horia DUGAN + observations: PVRTL nr.3552/2006 + has_warning_panels: null + year_built: 1937 + surface: 65.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.489126+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3150 + fields: + parent_id: null + status: 1 + street_number: '173' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.445121 + lng: 26.117198 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 465.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.616939+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3151 + fields: + parent_id: null + status: 1 + street_number: '176' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.446799 + lng: 26.112163 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.719176+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3152 + fields: + parent_id: null + status: 1 + street_number: '182' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.446771 + lng: 26.112689 + risk_category: RS1 + height_regime: S+P+2E+Ma; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.821001+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3153 + fields: + parent_id: null + status: 1 + street_number: '183' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.444541 + lng: 26.11833 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:55.943812+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3154 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.447108 + lng: 26.100226 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 659.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.065047+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3155 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.446949 + lng: 26.099553 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.235864+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3156 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.446845 + lng: 26.099572 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Victor NEDRITA + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 833.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.380102+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3157 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.446997 + lng: 26.100142 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.510235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3158 + fields: + parent_id: null + status: 1 + street_number: 37 (corp A) + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.4472004 + lng: 26.1000836 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: AC nr.604/1097487/2012 PVRTL din 2014 + has_warning_panels: null + year_built: 1900 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.652947+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3159 + fields: + parent_id: null + status: 1 + street_number: 37 (corp B) + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.447069 + lng: 26.109803 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 948.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.766136+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3160 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.447245 + lng: 26.101339 + risk_category: RS2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1435.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:56.872758+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3161 + fields: + parent_id: null + status: 1 + street_number: '57' + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.447826 + lng: 26.104037 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.111269+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3162 + fields: + parent_id: null + status: 1 + street_number: 75A + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.448026 + lng: 26.106686 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 429.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.226742+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3163 + fields: + parent_id: null + status: 1 + street_number: 76A + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.447686 + lng: 26.103729 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.395954+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3164 + fields: + parent_id: null + status: 1 + street_number: 77A + address: Strada MIHAI EMINESCU + county: București + locality: Sector 2 + lat: 44.448025 + lng: 26.106851 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.566336+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3165 + fields: + parent_id: null + status: 1 + street_number: 8A + address: Strada MIHAI EMINESCU + county: București + locality: Sector 1 + lat: 44.500887 + lng: 25.984127 + risk_category: N/A + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 2618.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.738851+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3166 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.432501 + lng: 26.095285 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.875140+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3167 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.43246 + lng: 26.0951409 + risk_category: U1 + height_regime: P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 1624.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:57.987585+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3168 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.432515 + lng: 26.094961 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculae TUDOSE + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 1878.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.126817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3169 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.432638 + lng: 26.095411 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.298618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3170 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.432626 + lng: 26.095294 + risk_category: RS3 + height_regime: S+P+2E+Ma; S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.419558+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3171 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada MIHAI VODĂ + county: București + locality: Sector 5 + lat: 44.4325029 + lng: 26.095419 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.531666+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3172 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada MIHAIL MIRINESCU + county: București + locality: Sector 5 + lat: 44.429586 + lng: 26.073444 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.669046+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3173 + fields: + parent_id: null + status: 1 + street_number: 20÷22 + address: Strada MIHAIL MIRINESCU + county: București + locality: Sector 5 + lat: 44.430398 + lng: 26.074085 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:58.902596+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3174 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada MIHAIL MOXA + county: București + locality: Sector 1 + lat: 44.44649 + lng: 26.087931 + risk_category: U1 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 795.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.016539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3175 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada MIHAIL MOXA + county: București + locality: Sector 1 + lat: 44.446454 + lng: 26.087264 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: 760.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.176945+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3176 + fields: + parent_id: null + status: 1 + street_number: 2 (corp B+C) + address: Strada MIHAIL MOXA + county: București + locality: Sector 1 + lat: 44.446764 + lng: 26.090102 + risk_category: U2 + height_regime: P+Ma S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Gheorghe VLAICU + observations: corp A (construcție nouă – Hotelul “MOXA”) situat în Strada MIHAIL + MOXA nr.4 (S+P+5E+ETEHNIC); reîncadrare în clasă de risc seismic în anul 2019; + AC nr.287/1402309/2016 + nr.384/1522201/2017 + has_warning_panels: null + year_built: 1920 + surface: 1889.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.346136+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3177 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada MIHAIL OBEDENARU + county: București + locality: Sector 5 + lat: 44.432397 + lng: 26.075685 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 750.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.467922+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3178 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B) + address: Strada MIRCEA VASILESCU + county: București + locality: Sector 4 + lat: 44.422131 + lng: 26.093897 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.618264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3179 + fields: + parent_id: null + status: 1 + street_number: 107 (corp A+B+C) + address: Strada MIRCEA VULCANESCU + county: București + locality: Sector 1 + lat: 44.442218 + lng: 26.077886 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:48:59.824867+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3180 + fields: + parent_id: null + status: 1 + street_number: 108 (corp A+B+C) + address: Strada MIRCEA VULCANESCU + county: București + locality: Sector 1 + lat: 44.442237 + lng: 26.077805 + risk_category: U2 + height_regime: S+P+1E; S+P+1E+Ma; S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 1203.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.053492+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3181 + fields: + parent_id: null + status: 1 + street_number: '119' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.441992 + lng: 26.07723 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.180951+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3182 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.44387392 + lng: 26.08654851 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Dinu CIUBOTARIU + observations: '' + has_warning_panels: null + year_built: 1917 + surface: 362.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.343794+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3183 + fields: + parent_id: null + status: 1 + street_number: 2÷4 + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.444145 + lng: 26.087159 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.509208+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3184 + fields: + parent_id: null + status: 1 + street_number: 32A + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.443578 + lng: 26.084946 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 856.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.666569+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3185 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.443567 + lng: 26.085484 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:00.858619+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3186 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.443463 + lng: 26.084182 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.108440+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3187 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.443325 + lng: 26.083855 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.257715+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3188 + fields: + parent_id: null + status: 1 + street_number: '66' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.443045 + lng: 26.081403 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 520.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.404894+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3189 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.442819 + lng: 26.079853 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 839.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.545791+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3190 + fields: + parent_id: null + status: 1 + street_number: 76A + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.44289 + lng: 26.079975 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 670.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.664708+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3191 + fields: + parent_id: null + status: 1 + street_number: 87B + address: Strada MIRCEA VULCĂNESCU + county: București + locality: Sector 1 + lat: 44.442895 + lng: 26.081003 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 435.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:01.811011+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3192 + fields: + parent_id: null + status: 1 + street_number: '96' + address: Strada MIRCEA VULCANESCU + county: București + locality: Sector 1 + lat: 44.442664 + lng: 26.079489 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1870 + surface: 337.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.019762+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3193 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MITROPOLIT ANTIM IVIREANU + county: București + locality: Sector 5 + lat: 44.4265362 + lng: 26.0938809 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.247360+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3194 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada MITROPOLIT ANTIM IVIREANU + county: București + locality: Sector 5 + lat: 44.425343 + lng: 26.0921169 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1139.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.359053+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3195 + fields: + parent_id: null + status: 1 + street_number: 4bis + address: Strada MITROPOLIT ANTIM IVIREANU + county: București + locality: Sector 5 + lat: 44.426323 + lng: 26.097533 + risk_category: N/A + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.493583+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3196 + fields: + parent_id: null + status: 1 + street_number: 21A + address: Strada MITROPOLIT COSTACHE VENIAMIN + county: București + locality: Sector 5 + lat: 44.410972 + lng: 26.09096 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.627239+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3197 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada MITROPOLIT FILARET + county: București + locality: Sector 4 + lat: 44.420515 + lng: 26.0924479 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.766097+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3198 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Strada MITROPOLIT FILARET + county: București + locality: Sector 4 + lat: 44.4169029 + lng: 26.0908964 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:02.914807+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3199 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Strada MITROPOLIT IOSIF + county: București + locality: Sector 4 + lat: 44.409017 + lng: 26.093256 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.109707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3200 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4211735 + lng: 26.0910942 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 257.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.274799+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3201 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.420603 + lng: 26.0916635 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.438324+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3202 + fields: + parent_id: null + status: 1 + street_number: 12A + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.493292 + lng: 26.03517 + risk_category: N/A + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.543531+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3203 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4205245 + lng: 26.0918294 + risk_category: RS3 + height_regime: S+P; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1895 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.648130+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3204 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4205066 + lng: 26.0920017 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1885 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.761536+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3205 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4197918 + lng: 26.0937036 + risk_category: RS2 + height_regime: S+P+1E; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:03.884721+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3206 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4198388 + lng: 26.0933654 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Sorin APOLZAN + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.019857+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3207 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4196426 + lng: 26.0935993 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.210103+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3208 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada MITROPOLIT NIFON + county: București + locality: Sector 4 + lat: 44.4194061 + lng: 26.0943781 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.439835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3209 + fields: + parent_id: null + status: 1 + street_number: 12 (bloc A8) + address: Strada MOLDOVIŢA + county: București + locality: Sector 4 + lat: 44.380727 + lng: 26.129674 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.563413+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3210 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B) + address: Strada MONUMENTULUI + county: București + locality: Sector 2 + lat: 44.446374 + lng: 26.115937 + risk_category: RS2 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.676434+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3211 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada MONUMENTULUI + county: București + locality: Sector 2 + lat: 44.446515 + lng: 26.115839 + risk_category: RS2 + height_regime: S+P+Mz+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:04.834394+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3212 + fields: + parent_id: null + status: 1 + street_number: 28 (corp A) + address: Strada MORILOR + county: București + locality: Sector 3 + lat: 44.416369 + lng: 26.118377 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.004797+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3213 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada MUZELOR + county: București + locality: Sector 4 + lat: 44.421686 + lng: 26.100182 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.224460+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3214 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada MUZELOR + county: București + locality: Sector 4 + lat: 44.42278 + lng: 26.099794 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.451080+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3215 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada NEGOIU + county: București + locality: Sector 3 + lat: 44.425917 + lng: 26.132887 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Serban ALTENLIU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.627031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3216 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada NEGUSTORI + county: București + locality: Sector 2 + lat: 44.434392 + lng: 26.109346 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.727846+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3217 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada NEGUSTORI + county: București + locality: Sector 2 + lat: 44.434638 + lng: 26.109928 + risk_category: RS3 + height_regime: S+P+6E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.848011+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3218 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada NEGUSTORI + county: București + locality: Sector 2 + lat: 44.43515 + lng: 26.111424 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:05.988616+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3219 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada NEGUSTORI + county: București + locality: Sector 2 + lat: 44.435064 + lng: 26.111456 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.145266+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3220 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc OD5) + address: Strada NERA + county: București + locality: Sector 6 + lat: 44.42465 + lng: 26.027485 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 240 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 1755.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.346741+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3221 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada NICOLAE DROSSU + county: București + locality: Sector 1 + lat: 44.469272 + lng: 26.069876 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.573134+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3222 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada NICOLAE FILIMON + county: București + locality: Sector 6 + lat: 44.452792 + lng: 26.057057 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.723124+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3223 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada NICOLAE FILIPESCU + county: București + locality: Sector 2 + lat: 44.438992 + lng: 26.10245 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1885 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.829695+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3224 + fields: + parent_id: null + status: 1 + street_number: 34 (corp A+B+C) + address: Strada NICOLAE FILIPESCU + county: București + locality: Sector 2 + lat: 44.4391257 + lng: 26.102485 + risk_category: RS3 + height_regime: S+P+2E+Ma; S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1865 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:06.948089+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3225 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Strada NICOLAE FILIPESCU + county: București + locality: Sector 2 + lat: 44.440727 + lng: 26.10201 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.076109+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3226 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada NICOLAE FILIPESCU + county: București + locality: Sector 2 + lat: 44.440863 + lng: 26.101848 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.207967+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3227 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada NICOLAE GOLESCU + county: București + locality: Sector 1 + lat: 44.442062 + lng: 26.097488 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul asociaţiei + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Armand NEFIAN) + has_warning_panels: null + year_built: 1921 + surface: 1783.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.333069+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3228 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada NICOLAE GOLESCU + county: București + locality: Sector 1 + lat: 44.440958 + lng: 26.098039 + risk_category: U1 + height_regime: P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1766.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.473251+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3229 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada NICOLAE GOLESCU + county: București + locality: Sector 1 + lat: 44.441222 + lng: 26.097871 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.621988+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3230 + fields: + parent_id: null + status: 1 + street_number: 15A + address: Strada NICOLAE IORGA + county: București + locality: Sector 1 + lat: 44.447805 + lng: 26.092043 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 471.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.769808+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3231 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada NICOLAE IORGA + county: București + locality: Sector 1 + lat: 44.447748 + lng: 26.092364 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 2247.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.899180+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3232 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada NICOLAE IORGA + county: București + locality: Sector 1 + lat: 44.447668 + lng: 26.092308 + risk_category: U1 + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 314.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:07.994958+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3233 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada NICOLAE IORGA + county: București + locality: Sector 1 + lat: 44.4471704 + lng: 26.0940081 + risk_category: C + height_regime: S+P+5E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Leonid NEAGOE + observations: PVRTL nr.2884/2014 + has_warning_panels: null + year_built: 1936 + surface: 172.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.099526+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3234 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada NICOLAE MAVROGHENI + county: București + locality: Sector 3 + lat: 44.433662 + lng: 26.104702 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1906 + surface: 239.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.245888+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3235 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada NICOLAE RACOTA + county: București + locality: Sector 1 + lat: 44.463338 + lng: 26.075041 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.394264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3236 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada NICOLAE STAICOVICI + county: București + locality: Sector 5 + lat: 44.4316781 + lng: 26.0794201 + risk_category: RS3 + height_regime: S+Ds+P;S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.562887+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3237 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B) + address: Strada NICOLAE TONITZA + county: București + locality: Sector 3 + lat: 44.430212 + lng: 26.097328 + risk_category: RS3 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.730473+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3238 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada NICOLAE TONITZA + county: București + locality: Sector 3 + lat: 44.430114 + lng: 26.097803 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 67 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 37.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:08.911148+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3239 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada NICOLAE TONITZA + county: București + locality: Sector 3 + lat: 44.430055 + lng: 26.09761 + risk_category: U2 + height_regime: 2S+P+Mz+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mircea CRIŞAN + observations: Reîncadrare în clasă de risc seismic în anul 2016 + acordul majorităţii + proprietarilor (imobilul a fost încadrat iniţial în RsI de expertul tehnic atestat + M.D.R.A.P. Gabriel NICULESCU) + has_warning_panels: null + year_built: 1915 + surface: 11504.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.026776+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3240 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada NICOLAE TONITZA + county: București + locality: Sector 3 + lat: 44.430709 + lng: 26.099326 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1901 + surface: 2995.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.159087+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3241 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A) + address: Strada NICOLAE TURNESCU + county: București + locality: Sector 5 + lat: 44.434265 + lng: 26.067731 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.304103+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3242 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada NICOLAE TURNESCU + county: București + locality: Sector 5 + lat: 44.435031 + lng: 26.067743 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.438346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3243 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada NICOLAE VELESCU + county: București + locality: Sector 1 + lat: 44.463016 + lng: 26.092245 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.585868+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3244 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc S21) + address: Strada NICULAE T. SEBE + county: București + locality: Sector 3 + lat: 44.430716 + lng: 26.157971 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 38 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.734661+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3245 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada NIFON BALASESCU + county: București + locality: Sector 2 + lat: 44.446877 + lng: 26.141543 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:09.876374+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3246 + fields: + parent_id: null + status: 1 + street_number: 42 (bloc 2) + address: Strada NIȚU VASILE + county: București + locality: Sector 4 + lat: 44.390503 + lng: 26.118343 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.059864+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3247 + fields: + parent_id: null + status: 1 + street_number: 32 (22) + address: Strada OCCIDENTULUI (colț cu Strada ECATERINA TEODOROIU) + county: București + locality: Sector 1 + lat: 44.4470945 + lng: 26.0852331 + risk_category: U3 + height_regime: 'S+P+1E+Ma (anexă: P)' + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Bogdan GULEAC + observations: Încadrare în clasă de risc seismic în anul 2018 + has_warning_panels: null + year_built: null + surface: 805.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.172008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3248 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447965 + lng: 26.082654 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.300324+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3249 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B) + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447781 + lng: 26.083358 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.438254+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3250 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447642 + lng: 26.083874 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.612821+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3251 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447398 + lng: 26.084425 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.735791+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3252 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447212 + lng: 26.085441 + risk_category: RS3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.851313+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3253 + fields: + parent_id: null + status: 1 + street_number: 43 (corp A+B) + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447303 + lng: 26.085412 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai HOTINCEANU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:10.965021+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3254 + fields: + parent_id: null + status: 1 + street_number: 45 (corp A) + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.4473259 + lng: 26.085604 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Cătălin STEFAN + observations: Încadrare în clasă de risc seismic în anul 2013 + has_warning_panels: null + year_built: 1935 + surface: 154.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.096986+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3255 + fields: + parent_id: null + status: 1 + street_number: 45 (corp B) + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447466 + lng: 26.084203 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 114.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.211220+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3256 + fields: + parent_id: null + status: 1 + street_number: 49 (corp A+B+C) + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.447292 + lng: 26.086017 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.326746+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3257 + fields: + parent_id: null + status: 1 + street_number: 53-55 + address: Strada OCCIDENTULUI + county: București + locality: Sector 1 + lat: 44.4474211 + lng: 26.0863662 + risk_category: C + height_regime: 2S+P+4E+6Eretras + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Elena DRAGOMIRESCU + observations: AC nr.121/1298728/2015; PVRTL nr.01/2016 + has_warning_panels: null + year_built: 2016 + surface: 2464.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.448415+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3258 + fields: + parent_id: null + status: 1 + street_number: 7 (bloc N12) + address: Strada ODOBEŞTI + county: București + locality: Sector 3 + lat: 44.416775 + lng: 26.154137 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1965 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.559633+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3259 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada OLARI + county: București + locality: Sector 2 + lat: 44.438922 + lng: 26.116698 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.667648+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3260 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada OLARI + county: București + locality: Sector 2 + lat: 44.439444 + lng: 26.11891 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1870 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:11.833993+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3261 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada OLARI + county: București + locality: Sector 2 + lat: 44.439522 + lng: 26.119211 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Anatolie CAZACLIU + observations: AC nr.730/17"O"/08.07.2004 + has_warning_panels: null + year_built: 1916 + surface: 984.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.014559+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3262 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422783 + lng: 26.098809 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1895 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.151145+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3263 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422244 + lng: 26.098671 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.293225+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3264 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.421967 + lng: 26.098954 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1914 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.403482+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3265 + fields: + parent_id: null + status: 1 + street_number: 14 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.421973 + lng: 26.098665 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.527744+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3266 + fields: + parent_id: null + status: 1 + street_number: 21 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.421223 + lng: 26.098991 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.631723+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3267 + fields: + parent_id: null + status: 1 + street_number: 24 (corp A+B+C+D) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420164 + lng: 26.099706 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.773979+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3268 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420889 + lng: 26.099188 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:12.931693+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3269 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420786 + lng: 26.099263 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.091549+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3270 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422605 + lng: 26.098806 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.234202+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3271 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.421023 + lng: 26.098961 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1889 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.394085+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3272 + fields: + parent_id: null + status: 1 + street_number: '34' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420933 + lng: 26.099016 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.504804+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3273 + fields: + parent_id: null + status: 1 + street_number: 37 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420276 + lng: 26.099674 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.625383+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3274 + fields: + parent_id: null + status: 1 + street_number: 39 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420156 + lng: 26.099781 + risk_category: RS2 + height_regime: S+P; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.788867+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3275 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.419851 + lng: 26.099998 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Traian POPP + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1939 + surface: 450.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:13.940463+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3276 + fields: + parent_id: null + status: 1 + street_number: 48 (corp A+B+C) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420326 + lng: 26.099483 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.101786+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3277 + fields: + parent_id: null + status: 1 + street_number: 52 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.420108 + lng: 26.099675 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1839 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.280010+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3278 + fields: + parent_id: null + status: 1 + street_number: 58A + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.419478 + lng: 26.099929 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.430031+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3279 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A+B+C) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422514 + lng: 26.098677 + risk_category: RS2 + height_regime: S+P; S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.564741+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3280 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418743 + lng: 26.100278 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.672318+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3281 + fields: + parent_id: null + status: 1 + street_number: '64' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418869 + lng: 26.100091 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1909 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.787376+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3282 + fields: + parent_id: null + status: 1 + street_number: 66 (corp A+B+C) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418818 + lng: 26.100114 + risk_category: RS1 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1914 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:14.909472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3283 + fields: + parent_id: null + status: 1 + street_number: 68 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418766 + lng: 26.100136 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.090053+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3284 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418715 + lng: 26.100158 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.232571+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3285 + fields: + parent_id: null + status: 1 + street_number: 72 (corp A+B) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418577 + lng: 26.100224 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1913 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.403731+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3286 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418514 + lng: 26.100256 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.575409+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3287 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418449 + lng: 26.100288 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.698669+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3288 + fields: + parent_id: null + status: 1 + street_number: 7A + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422251 + lng: 26.098797 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.822264+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3289 + fields: + parent_id: null + status: 1 + street_number: 80 (corp A+B+C) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418321 + lng: 26.100353 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:15.945340+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3290 + fields: + parent_id: null + status: 1 + street_number: '82' + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.418257 + lng: 26.100384 + risk_category: RS2 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.071037+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3291 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B+C) + address: Strada OLIMPULUI + county: București + locality: Sector 4 + lat: 44.422073 + lng: 26.098794 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.224761+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3292 + fields: + parent_id: null + status: 1 + street_number: 15÷17 (corp A+B+C+D+E+H) + address: Strada ORZARI + county: București + locality: Sector 2 + lat: 44.432443 + lng: 26.130106 + risk_category: RS1 + height_regime: S+P; S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.379357+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3293 + fields: + parent_id: null + status: 1 + street_number: 58B + address: Strada ORZARI + county: București + locality: Sector 2 + lat: 44.433343 + lng: 26.13323 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.560441+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3294 + fields: + parent_id: null + status: 1 + street_number: 12 (corp A+B) + address: Strada OSTAȘILOR + county: București + locality: Sector 1 + lat: 44.4377968 + lng: 26.0848198 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: '' + has_warning_panels: null + year_built: 1883 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.730592+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3295 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada OSTASILOR + county: București + locality: Sector 1 + lat: 44.437768 + lng: 26.084528 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.849146+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3296 + fields: + parent_id: null + status: 1 + street_number: 23A + address: Strada OSTASILOR + county: București + locality: Sector 1 + lat: 44.438053 + lng: 26.084381 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:16.973285+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3297 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada OSTASILOR + county: București + locality: Sector 1 + lat: 44.438394 + lng: 26.084395 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.102575+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3298 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A+B) + address: Strada OSTAŞILOR + county: București + locality: Sector 1 + lat: 44.436872 + lng: 26.08529 + risk_category: U1 + height_regime: P+5E+Ma; P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 2832.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.232366+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3299 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada OSTASILOR + county: București + locality: Sector 1 + lat: 44.437253 + lng: 26.084948 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.354692+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3300 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada OȚETARI + county: București + locality: Sector 2 + lat: 44.4391645 + lng: 26.1069699 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Petru IOAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.479434+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3301 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada PALADE GHEORGHE + county: București + locality: Sector 2 + lat: 44.446486 + lng: 26.111414 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 880.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.631453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3302 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada PALEOLOGU + county: București + locality: Sector 3 + lat: 44.434388 + lng: 26.111849 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 138.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.829569+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3303 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada PALEOLOGU + county: București + locality: Sector 2 + lat: 44.436088 + lng: 26.110671 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:17.938994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3304 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada PALEOLOGU + county: București + locality: Sector 3 + lat: 44.434226 + lng: 26.111806 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.043843+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3305 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada PALEOLOGU + county: București + locality: Sector 2 + lat: 44.4357077 + lng: 26.1111914 + risk_category: C + height_regime: P+5E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TUDOSE + observations: PVRTL nr.10/2004 + has_warning_panels: null + year_built: 1936 + surface: 3414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.154180+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3306 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A) + address: Strada PALEOLOGU + county: București + locality: Sector 2 + lat: 44.435489 + lng: 26.11117 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 893.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.270941+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3307 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada PALEOLOGU + county: București + locality: Sector 2 + lat: 44.435266 + lng: 26.111452 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.409117+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3308 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada PAMFIL NASTASE + county: București + locality: Sector 2 + lat: 44.452547 + lng: 26.106201 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 440.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.605909+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3309 + fields: + parent_id: null + status: 1 + street_number: 22 (corp B) + address: Strada PAMFIL NASTASE + county: București + locality: Sector 2 + lat: 44.452312 + lng: 26.107466 + risk_category: RS2 + height_regime: S+Ds+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.789247+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3310 + fields: + parent_id: null + status: 1 + street_number: 104 (corp A+B+C) + address: Strada PANAIT ISTRATI + county: București + locality: Sector 1 + lat: 44.464982 + lng: 26.066988 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: 154.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:18.961560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3311 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada PARFUMULUI + county: București + locality: Sector 3 + lat: 44.427826 + lng: 26.115868 + risk_category: U2 + height_regime: S+P+7E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Gabriel NICULESCU + observations: Încadrare în clasă de risc seismic în anul 2018 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1944 + surface: 1772.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.070465+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3312 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada PARFUMULUI + county: București + locality: Sector 3 + lat: 44.427826 + lng: 26.115868 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.180029+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3313 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A+B) + address: Strada PĂRINTELE STĂNILOAIE (fostă Strada CERNICA) + county: București + locality: Sector 2 + lat: 44.4350283 + lng: 26.11051757 + risk_category: U1 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 803.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.309144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3314 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada PĂRINTELE STĂNILOAIE (fostă Strada CERNICA) + county: București + locality: Sector 2 + lat: 44.4351881 + lng: 26.1093255 + risk_category: RS1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 1298.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.447267+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3315 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada PARIS + county: București + locality: Sector 1 + lat: 44.453852 + lng: 26.087592 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 928.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.584155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3316 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada PARIS + county: București + locality: Sector 1 + lat: 44.457646 + lng: 26.091992 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 881.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.732590+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3317 + fields: + parent_id: null + status: 1 + street_number: 7 (corp principal+corp secundar) + address: Strada PARIS + county: București + locality: Sector 1 + lat: 44.45410116 + lng: 26.08766497 + risk_category: U1 + height_regime: Sp+Ds+P+2E S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Mihai URSĂCHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 910.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:19.885516+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3318 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada PARIS + county: București + locality: Sector 1 + lat: 44.454373 + lng: 26.088015 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.040758+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3319 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada PASULUI + county: București + locality: Sector 2 + lat: 44.438923 + lng: 26.111932 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 430.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.145163+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3320 + fields: + parent_id: null + status: 1 + street_number: 10 (15) + address: Strada PATRASCU VODA (colț cu Strada SFÂNTUL GHEORGHE NOU) + county: București + locality: Sector 3 + lat: 44.4314415 + lng: 26.1032968 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 441.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.250742+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3321 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada PATRASCU VODA + county: București + locality: Sector 3 + lat: 44.433424 + lng: 26.104254 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.398251+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3322 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada PATRAŞCU VODĂ + county: București + locality: Sector 3 + lat: 44.433428 + lng: 26.104689 + risk_category: U1 + height_regime: S+P+1E+Mz+Pd + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1850 + surface: 530.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.519484+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3323 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada PATRAŞCU VODĂ + county: București + locality: Sector 3 + lat: 44.433465 + lng: 26.104937 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1889 + surface: 420.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.654649+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3324 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada PATRAŞCU VODĂ + county: București + locality: Sector 3 + lat: 44.433295 + lng: 26.104402 + risk_category: U1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 296.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.807901+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3325 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada PATRIEI + county: București + locality: Sector 3 + lat: 44.42981 + lng: 26.104686 + risk_category: RS2 + height_regime: S+P+Mz+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:20.964042+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3326 + fields: + parent_id: null + status: 1 + street_number: 3A (bloc M3G) + address: Strada PATRIOŢILOR + county: București + locality: Sector 3 + lat: 44.4112036 + lng: 26.1652682 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Dan POPESCU + observations: Reîncadrare în clasă de risc seismic în anul 2013 (documentaţie + tehnico economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1975 + surface: 3344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.139448+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3327 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada PAUL GRECEANU + county: București + locality: Sector 2 + lat: 44.45167 + lng: 26.103255 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.238440+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3328 + fields: + parent_id: null + status: 1 + street_number: 7 (corp A+B) + address: Strada PAUL GRECEANU + county: București + locality: Sector 2 + lat: 44.451733 + lng: 26.101914 + risk_category: RS1 + height_regime: S+P+2ES+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1918 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.383779+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3329 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada PAUL IONESCU + county: București + locality: Sector 1 + lat: 44.450051 + lng: 26.076563 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.532826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3330 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Strada PETRE CRETU + county: București + locality: Sector 1 + lat: 44.468785 + lng: 26.073319 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NĂVODARIU + observations: PVRTL nr.01/2007 + has_warning_panels: null + year_built: 1936 + surface: 651.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.708618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3331 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Strada PETRE CRETU + county: București + locality: Sector 1 + lat: 44.468785 + lng: 26.073319 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai IONESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 775.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:21.889997+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3332 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada PETRU CERCEL + county: București + locality: Sector 4 + lat: 44.420603 + lng: 26.101499 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.048654+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3333 + fields: + parent_id: null + status: 1 + street_number: 1÷3 + address: Strada PETRU PONI + county: București + locality: Sector 1 + lat: 44.448995 + lng: 26.076532 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 284.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.224954+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3334 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada PETRU PONI + county: București + locality: Sector 1 + lat: 44.449683 + lng: 26.075606 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 19.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.386197+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3335 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada PETRU PONI + county: București + locality: Sector 1 + lat: 44.449152 + lng: 26.076571 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 889.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.510128+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3336 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada PETRU RARES + county: București + locality: Sector 1 + lat: 44.450439 + lng: 26.071722 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.623594+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3337 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada PETRU RARES + county: București + locality: Sector 1 + lat: 44.451713 + lng: 26.072929 + risk_category: RS1 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1913 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.776064+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3338 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada PETRU RARES + county: București + locality: Sector 1 + lat: 44.451579 + lng: 26.072949 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:22.948778+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3339 + fields: + parent_id: null + status: 1 + street_number: 7÷9 + address: Strada PIAŢA AMZEI + county: București + locality: Sector 1 + lat: 44.443629 + lng: 26.094228 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 90 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 11718.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.084521+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3340 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada PITAR MOŞ + county: București + locality: Sector 1 + lat: 44.442923 + lng: 26.100828 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Constantin PAVEL + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1936 + surface: 980.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.230285+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3341 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada PITAR MOŞ + county: București + locality: Sector 1 + lat: 44.443857 + lng: 26.100815 + risk_category: U1 + height_regime: P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 2722.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.389688+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3342 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada PITAR MOŞ + county: București + locality: Sector 1 + lat: 44.444147 + lng: 26.100756 + risk_category: U1 + height_regime: P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 59 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 4639.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.495354+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3343 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.436187 + lng: 26.11597 + risk_category: C + height_regime: Ds+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: AC nr.499/64"P"/2005; PVRFL nr.02/2007; PVRTL nr.92883/7981/2008 + has_warning_panels: null + year_built: 1922 + surface: 507.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.631233+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3344 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.436336 + lng: 26.116186 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.799997+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3345 + fields: + parent_id: null + status: 1 + street_number: 45 (corp A) + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.436003 + lng: 26.115323 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1895 + surface: 467.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:23.978268+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3346 + fields: + parent_id: null + status: 1 + street_number: 45 (corp B) + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.4370768 + lng: 26.1193567 + risk_category: C + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSĂCHESCU + observations: PVRTL nr.75010/6409/2005 + has_warning_panels: null + year_built: 1895 + surface: 147.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.119330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3347 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.437093 + lng: 26.119605 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 749.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.264198+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3348 + fields: + parent_id: null + status: 1 + street_number: '60' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.437653 + lng: 26.120852 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.439738+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3349 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.437913 + lng: 26.12141 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.571877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3350 + fields: + parent_id: null + status: 1 + street_number: '74' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.438028 + lng: 26.121811 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.677826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3351 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.438147 + lng: 26.122242 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.823056+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3352 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Strada PLANTELOR + county: București + locality: Sector 2 + lat: 44.438206 + lng: 26.122458 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:24.957282+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3353 + fields: + parent_id: null + status: 1 + street_number: 46 (corp A+B) + address: Strada PLUGARILOR + county: București + locality: Sector 4 + lat: 44.413027 + lng: 26.116545 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: AC nr.412/63260/2008; PVRTL nr.218/2009 + has_warning_panels: null + year_built: 1918 + surface: 258.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.141283+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3354 + fields: + parent_id: null + status: 1 + street_number: 12÷14 + address: Strada POENARU BORDEA + county: București + locality: Sector 4 + lat: 44.428155 + lng: 26.096521 + risk_category: U1 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 24 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 2813.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.328323+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3355 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada POENARU BORDEA + county: București + locality: Sector 4 + lat: 44.428013 + lng: 26.097097 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 30 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 33.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.538539+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3356 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada POENARU BORDEA + county: București + locality: Sector 4 + lat: 44.428665 + lng: 26.095627 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.672795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3357 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada POENARU BORDEA + county: București + locality: Sector 4 + lat: 44.428525 + lng: 26.095829 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.800365+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3358 + fields: + parent_id: null + status: 1 + street_number: 8÷10 + address: Strada POENARU BORDEA + county: București + locality: Sector 4 + lat: 44.428293 + lng: 26.095812 + risk_category: RS1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1961 + surface: 233.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:25.920284+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3359 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada POIANA FLORILOR + county: București + locality: Sector 4 + lat: 44.423166 + lng: 26.092613 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.052793+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3360 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada POIANA NARCISELOR + county: București + locality: Sector 2 + lat: 44.438716 + lng: 26.093222 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.208953+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3361 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada POIANA NARCISELOR + county: București + locality: Sector 1 + lat: 44.439311 + lng: 26.092263 + risk_category: U1 + height_regime: P+6E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 2914.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.332436+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3362 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada POIANA NARCISELOR + county: București + locality: Sector 1 + lat: 44.439273 + lng: 26.092613 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Victor NEDRITA + observations: '' + has_warning_panels: null + year_built: 1902 + surface: 212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.465964+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3363 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada POIANA NARCISELOR + county: București + locality: Sector 2 + lat: 44.439105 + lng: 26.092537 + risk_category: RS3 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 56 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.660863+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3364 + fields: + parent_id: null + status: 1 + street_number: 23 (corp A) + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.4483814 + lng: 26.1030998 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 999.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.811578+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3365 + fields: + parent_id: null + status: 1 + street_number: 23C + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.4460033 + lng: 26.1032845 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:26.968896+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3366 + fields: + parent_id: null + status: 1 + street_number: 24÷26 + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.447954 + lng: 26.103208 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Zefir APOSTOL + observations: AC nr.77/1201997/2014 PVRTL nr.1/2016 + has_warning_panels: null + year_built: 1927 + surface: 158.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.128058+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3367 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.448854 + lng: 26.102982 + risk_category: N/A + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.273102+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3368 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada POLONĂ + county: București + locality: Sector 1 + lat: 44.448972 + lng: 26.102953 + risk_category: U2 + height_regime: Ds+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2011 + certified_expert: Armand NEFIAN + observations: Încadrare în clasă de risc seismic în anul 2011 + has_warning_panels: null + year_built: 1930 + surface: 474.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.428572+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3369 + fields: + parent_id: null + status: 1 + street_number: '47' + address: Strada POLONĂ + county: București + locality: Sector 1 + lat: 44.448302 + lng: 26.102936 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 238.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.566551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3370 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.450502 + lng: 26.102133 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 182.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.752525+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3371 + fields: + parent_id: null + status: 1 + street_number: '75' + address: Strada POLONĂ + county: București + locality: Sector 1 + lat: 44.450025 + lng: 26.102409 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 470.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:27.897918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3372 + fields: + parent_id: null + status: 1 + street_number: '90' + address: Strada POLONA + county: București + locality: Sector 1 + lat: 44.451811 + lng: 26.101297 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.025170+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3373 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada POMPILIU ELIADE + county: București + locality: Sector 1 + lat: 44.435177 + lng: 26.088279 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: 14.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.186509+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3374 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada POPA MARIN + county: București + locality: Sector 1 + lat: 44.464698 + lng: 26.095392 + risk_category: RS3 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.365994+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3375 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.438113 + lng: 26.123384 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.606274+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3376 + fields: + parent_id: null + status: 1 + street_number: 115B (corp A+B) + address: Strada POPA NAN + county: București + locality: Sector 3 + lat: 44.4311929 + lng: 26.126104 + risk_category: RS3 + height_regime: S+P+1E+Ma S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 218.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.855512+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3377 + fields: + parent_id: null + status: 1 + street_number: 137A + address: Strada POPA NAN + county: București + locality: Sector 3 + lat: 44.42961 + lng: 26.126377 + risk_category: U3 + height_regime: S+P+3E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Ion POPA + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 681.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:28.997001+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3378 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada POPA NAN + county: București + locality: Sector 3 + lat: 44.431727 + lng: 26.125899 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 933.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:29.104655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3379 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.438861 + lng: 26.122776 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:29.226286+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3380 + fields: + parent_id: null + status: 1 + street_number: '49' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.435722 + lng: 26.125151 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:29.373392+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3381 + fields: + parent_id: null + status: 1 + street_number: '60' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.435524 + lng: 26.125146 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:29.540849+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3382 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.434235 + lng: 26.125348 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:29.770613+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3383 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.433548 + lng: 26.125476 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Maria GABOR + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 755.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.038700+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3384 + fields: + parent_id: null + status: 1 + street_number: '88' + address: Strada POPA NAN + county: București + locality: Sector 2 + lat: 44.432862 + lng: 26.125651 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.152408+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3385 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada POPA PETRE + county: București + locality: Sector 2 + lat: 44.441331 + lng: 26.114436 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 123.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.259217+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3386 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada POPA PETRE + county: București + locality: Sector 2 + lat: 44.441581 + lng: 26.113892 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.385509+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3387 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada POPA PETRE + county: București + locality: Sector 2 + lat: 44.441096 + lng: 26.115278 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Elena DRAGOMIRESCU + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.523760+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3388 + fields: + parent_id: null + status: 1 + street_number: 37 (corp A+B) + address: Strada POPA PETRE + county: București + locality: Sector 2 + lat: 44.441101 + lng: 26.115696 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 616.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.700606+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3389 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada POPA PETRE + county: București + locality: Sector 2 + lat: 44.440646 + lng: 26.116734 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:30.925846+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3390 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada POPA RUSU + county: București + locality: Sector 2 + lat: 44.438812 + lng: 26.109877 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.140934+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3391 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada POPA RUSU + county: București + locality: Sector 2 + lat: 44.439491 + lng: 26.110866 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.240330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3392 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada POPA RUSU + county: București + locality: Sector 2 + lat: 44.440278 + lng: 26.111001 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.347242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3393 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A+B+C) + address: Strada POPA RUSU + county: București + locality: Sector 2 + lat: 44.438775 + lng: 26.109667 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.475317+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3394 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada POPA SOARE + county: București + locality: Sector 2 + lat: 44.434484 + lng: 26.114426 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.631035+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3395 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada POPA SOARE + county: București + locality: Sector 3 + lat: 44.433734 + lng: 26.112688 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1425.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:31.831053+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3396 + fields: + parent_id: null + status: 1 + street_number: 9÷11 + address: Strada POPA STEFAN + county: București + locality: Sector 5 + lat: 44.401381 + lng: 26.085719 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.064852+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3397 + fields: + parent_id: null + status: 1 + street_number: 1÷3 + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.44007 + lng: 26.086472 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gheorghe AFANASENCO + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.245605+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3398 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.440901 + lng: 26.085896 + risk_category: N/A + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1889 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.355502+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3399 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.441253 + lng: 26.085819 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.460730+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3400 + fields: + parent_id: null + status: 1 + street_number: 29A + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.442168 + lng: 26.085071 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.626235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3401 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.442346 + lng: 26.084926 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1897 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:32.827775+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3402 + fields: + parent_id: null + status: 1 + street_number: 37A + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.442551 + lng: 26.084734 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.033329+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3403 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.44272 + lng: 26.08472 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.210730+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3404 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.442924 + lng: 26.084518 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.359505+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3405 + fields: + parent_id: null + status: 1 + street_number: 52 (corp A+B) + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.443095 + lng: 26.08429 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.475432+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3406 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.444249 + lng: 26.082998 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Horia DUGAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.586578+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3407 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.44433 + lng: 26.082902 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.710479+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3408 + fields: + parent_id: null + status: 1 + street_number: '76' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.444493 + lng: 26.082709 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 118.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:33.857209+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3409 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.444575 + lng: 26.082612 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae TOPA + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 176.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.031541+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3410 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.444682 + lng: 26.082465 + risk_category: N/A + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 985.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.176151+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3411 + fields: + parent_id: null + status: 1 + street_number: '85' + address: Strada POPA TATU + county: București + locality: Sector 1 + lat: 44.4447007 + lng: 26.0818786 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Rodica VASILESCU + observations: expertul propune demolarea imobilului + has_warning_panels: null + year_built: 1885 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.304012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3412 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada POPIŞTEANU + county: București + locality: Sector 1 + lat: 44.469412 + lng: 26.059164 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae TEMELCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 510.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.453547+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3413 + fields: + parent_id: null + status: 1 + street_number: 22 (bloc 12) + address: Strada POSTAVARUL + county: București + locality: Sector 3 + lat: 44.4163937 + lng: 26.1684982 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 43 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 2798.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.568373+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3414 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc D2, tr.I+II) + address: Strada POSTĂVARUL + county: București + locality: Sector 3 + lat: 44.4187721 + lng: 26.1667325 + risk_category: U2 + height_regime: S+P+10E+1E tehnic + is_still_present: true + consolidation_status: 'NO' + apartment_count: 264 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2013 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1967 + surface: 9372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.690181+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3415 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4192195 + lng: 26.1032931 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1901 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:34.867712+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3416 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.419148 + lng: 26.104227 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.042824+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3417 + fields: + parent_id: null + status: 1 + street_number: 26A + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4192977 + lng: 26.1053609 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.198361+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3418 + fields: + parent_id: null + status: 1 + street_number: 3 (corp A+B+C) + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4197012 + lng: 26.1024768 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.337043+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3419 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada POTERAŞ + county: București + locality: Sector 4 + lat: 44.419432 + lng: 26.105432 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 895.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.477662+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3420 + fields: + parent_id: null + status: 1 + street_number: 36 (corp A+C) + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4194746 + lng: 26.1064003 + risk_category: RS3 + height_regime: S+P+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.618020+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3421 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4195435 + lng: 26.106124 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.729196+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3422 + fields: + parent_id: null + status: 1 + street_number: '39' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4195667 + lng: 26.1062632 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.846228+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3423 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.4195813 + lng: 26.1063138 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:35.983032+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3424 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada POTERAS + county: București + locality: Sector 4 + lat: 44.419626 + lng: 26.10676 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.128726+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3425 + fields: + parent_id: null + status: 1 + street_number: 6÷8 (corp A1+A2) + address: Strada POVERNEI (Sediul “S.N.S.P.A.”, fostul sediu “S.R.I.”) + county: București + locality: Sector 4 + lat: 44.4500583 + lng: 26.0939825 + risk_category: U2 + height_regime: Ds+P+2E+Ma Ds+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Mircea CRIŞAN + observations: Încadrare în clasă de risc seismic în anul 2008 (casa scării dintre + corpurile A1 şi A2 este încadrată în RsI) + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.331312+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3426 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B+C) + address: Strada POVERNEI + county: București + locality: Sector 1 + lat: 44.449638 + lng: 26.093479 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.513494+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3427 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada POVERNEI + county: București + locality: Sector 1 + lat: 44.449541 + lng: 26.093939 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1155.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.704475+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3428 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada PRECUPETII VECHI + county: București + locality: Sector 2 + lat: 44.448232 + lng: 26.118857 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.807415+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3429 + fields: + parent_id: null + status: 1 + street_number: '50' + address: Strada PRECUPETII VECHI + county: București + locality: Sector 2 + lat: 44.448362 + lng: 26.119031 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:36.910578+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3430 + fields: + parent_id: null + status: 1 + street_number: 51 (corp B) + address: Strada PRECUPETII VECHI + county: București + locality: Sector 2 + lat: 44.448528 + lng: 26.119077 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Zefir APOSTOL + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.036949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3431 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada PRECUPETII VECHI + county: București + locality: Sector 2 + lat: 44.448485 + lng: 26.119453 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.181859+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3432 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada PRECUPETII VECHI + county: București + locality: Sector 2 + lat: 44.448931 + lng: 26.119592 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.311434+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3433 + fields: + parent_id: null + status: 1 + street_number: 2 (vila A+A') + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.4229484 + lng: 26.098818 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 573.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.423999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3434 + fields: + parent_id: null + status: 1 + street_number: 2 (vila B) + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.4234208 + lng: 26.1019159 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.555608+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3435 + fields: + parent_id: null + status: 1 + street_number: 38÷40 + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.4229484 + lng: 26.098818 + risk_category: C + height_regime: S+P+4E+1Eretras+Ms1+Ms2 + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: AC nr.332/63645/2008; PVRTL nr.984/2008 + has_warning_panels: null + year_built: 2008 + surface: 3998.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.707830+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3436 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422755 + lng: 26.098365 + risk_category: N/A + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.871496+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3437 + fields: + parent_id: null + status: 1 + street_number: 47C (corp A+B+C) + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.4228247 + lng: 26.0985347 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:37.977325+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3438 + fields: + parent_id: null + status: 1 + street_number: 56÷58 + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422822 + lng: 26.097023 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.092803+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3439 + fields: + parent_id: null + status: 1 + street_number: '59' + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.42273 + lng: 26.097053 + risk_category: RS3 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.218390+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3440 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422741 + lng: 26.096855 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.363072+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3441 + fields: + parent_id: null + status: 1 + street_number: 64 (corp C+D) + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422958 + lng: 26.0963891 + risk_category: RS3 + height_regime: S+P; S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.497863+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3442 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422881 + lng: 26.095144 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.657391+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3443 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada PRINCIPATELE UNITE + county: București + locality: Sector 4 + lat: 44.422791 + lng: 26.095871 + risk_category: RS1 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.852623+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3444 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc D5) + address: Strada PRISACA DORNEI + county: București + locality: Sector 3 + lat: 44.418926 + lng: 26.169511 + risk_category: U2 + height_regime: S+P+10E+1E tehnic + is_still_present: true + consolidation_status: 'NO' + apartment_count: 264 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2013 (documentaţie tehnico + economică elaborată pentru creşterea eficienţei energetice a construcţiei) + has_warning_panels: null + year_built: 1967 + surface: 13446.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:38.998151+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3445 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada PROFESORILOR + county: București + locality: Sector 4 + lat: 44.424277 + lng: 26.100611 + risk_category: C + height_regime: S+P+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: AC nr.1082/66002/2007 PVRTL nr.362/2009 + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.104828+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3446 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada PROFESORILOR + county: București + locality: Sector 4 + lat: 44.42468 + lng: 26.100462 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.228522+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3447 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada PROFESORILOR + county: București + locality: Sector 4 + lat: 44.424418 + lng: 26.100563 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.377192+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3448 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada PROGRESULUI + county: București + locality: Sector 1 + lat: 44.424741 + lng: 26.066675 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.510928+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3449 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada PROGRESULUI + county: București + locality: Sector 1 + lat: 44.448325 + lng: 26.005432 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.659466+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3450 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada PROGRESULUI + county: București + locality: Sector 1 + lat: 44.411421 + lng: 26.08332 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:39.852614+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3451 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada PUSCASULUI + county: București + locality: Sector 1 + lat: 44.46141 + lng: 26.058935 + risk_category: RS3 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.039621+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3452 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada RADU BELLER + county: București + locality: Sector 1 + lat: 44.463034 + lng: 26.095177 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 833.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.132422+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3453 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432943 + lng: 26.107459 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1895 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.236771+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3454 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432314 + lng: 26.107746 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 947.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.366466+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3455 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432075 + lng: 26.108265 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai COICULESCU + observations: '' + has_warning_panels: null + year_built: 1867 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.516109+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3456 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432066 + lng: 26.108093 + risk_category: U1 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 240 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOAILA + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 1944.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.695197+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3457 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.43202 + lng: 26.1084394 + risk_category: C + height_regime: S+P+1E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurenţiu SPOIALĂ + observations: PVRTL nr.1/2004 + has_warning_panels: null + year_built: 1891 + surface: 823.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:40.855206+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3458 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432756 + lng: 26.107427 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1923 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.037683+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3459 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada RADU CALOMFIRESCU + county: București + locality: Sector 3 + lat: 44.432438 + lng: 26.107767 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 168.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.187453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3460 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada RADU CRISTIAN + county: București + locality: Sector 2 + lat: 44.435272 + lng: 26.107255 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 950.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.294562+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3461 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada RADU CRISTIAN + county: București + locality: Sector 2 + lat: 44.435622 + lng: 26.106939 + risk_category: U1 + height_regime: Ds+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1899 + surface: 18.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.420370+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3462 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada RADU CRISTIAN + county: București + locality: Sector 2 + lat: 44.435508 + lng: 26.107128 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1247.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.542247+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3463 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada RADU DE LA AFUMAŢI + county: București + locality: Sector 2 + lat: 44.4499975 + lng: 26.1153035 + risk_category: U1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 610.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.717632+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3464 + fields: + parent_id: null + status: 1 + street_number: 53 (corp A+B+C+D) + address: Strada RADU DE LA AFUMAŢI + county: București + locality: Sector 2 + lat: 44.4507552 + lng: 26.1171318 + risk_category: U1 + height_regime: S+P+2E; S+P+1 + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1915 + surface: 204.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:41.902393+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3465 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada RAFAEL + county: București + locality: Sector 2 + lat: 44.437922 + lng: 26.111834 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.120259+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3466 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada RASNOV + county: București + locality: Sector 2 + lat: 44.452062 + lng: 26.147534 + risk_category: N/A + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.303016+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3467 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada RASPANTIILOR + county: București + locality: Sector 2 + lat: 44.449951 + lng: 26.108259 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.395584+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3468 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada RAUREANU + county: București + locality: Sector 5 + lat: 44.430894 + lng: 26.095982 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 539.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.506362+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3469 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 8) + address: Strada RESITA + county: București + locality: Sector 4 + lat: 44.378634 + lng: 26.098539 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin LAVRIC + observations: '' + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.636817+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3470 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc 9) + address: Strada RIPICENI + county: București + locality: Sector 2 + lat: 44.46259415 + lng: 26.12908511 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin CIOVEIE + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:42.794946+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3471 + fields: + parent_id: null + status: 1 + street_number: 6 (corp A) + address: Strada RIPICENI + county: București + locality: Sector 2 + lat: 44.462693 + lng: 26.128944 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 110 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.008409+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3472 + fields: + parent_id: null + status: 1 + street_number: 6 (corp B) + address: Strada RIPICENI + county: București + locality: Sector 2 + lat: 44.46276057 + lng: 26.12879926 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.199663+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3473 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada RIPICENI + county: București + locality: Sector 2 + lat: 44.461574 + lng: 26.130255 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.410913+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3474 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada RITORIDE + county: București + locality: Sector 5 + lat: 44.408764 + lng: 26.089522 + risk_category: RS1 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru NEAGU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.519314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3475 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ROBERT KOCH + county: București + locality: Sector 5 + lat: 44.432467 + lng: 26.074691 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel TOMESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.624921+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3476 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada ROMA + county: București + locality: Sector 1 + lat: 44.455684 + lng: 26.094101 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.748663+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3477 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada ROMA + county: București + locality: Sector 1 + lat: 44.457222 + lng: 26.09399 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Valentin SEVCENCO + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 549.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:43.881543+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3478 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ROMA + county: București + locality: Sector 1 + lat: 44.453934 + lng: 26.094619 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1923 + surface: 660.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.107255+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3479 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ROMULUS + county: București + locality: Sector 2 + lat: 44.434022 + lng: 26.114072 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.326396+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3480 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada ROMULUS + county: București + locality: Sector 2 + lat: 44.434833 + lng: 26.112787 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.514935+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3481 + fields: + parent_id: null + status: 1 + street_number: 28 (corp A) + address: Strada ROMULUS + county: București + locality: Sector 3 + lat: 44.43305 + lng: 26.114705 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 801.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.619063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3482 + fields: + parent_id: null + status: 1 + street_number: 28 (corp B) + address: Strada ROMULUS + county: București + locality: Sector 3 + lat: 44.43305 + lng: 26.114705 + risk_category: U3 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.723974+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3483 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada ROMULUS + county: București + locality: Sector 2 + lat: 44.434651 + lng: 26.113233 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1942 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:44.880012+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3484 + fields: + parent_id: null + status: 1 + street_number: 64 (corp A+B) + address: Strada ROMULUS + county: București + locality: Sector 3 + lat: 44.428851 + lng: 26.115355 + risk_category: U2 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 909.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.076538+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3485 + fields: + parent_id: null + status: 1 + street_number: '79' + address: Strada ROMULUS + county: București + locality: Sector 3 + lat: 44.428651 + lng: 26.115529 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.313412+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3486 + fields: + parent_id: null + status: 1 + street_number: 83÷85 + address: Strada ROMULUS + county: București + locality: Sector 3 + lat: 44.428356 + lng: 26.115585 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.523689+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3487 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada RONDĂ + county: București + locality: Sector 2 + lat: 44.436802 + lng: 26.125636 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 597.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.649207+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3488 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada RONDA + county: București + locality: Sector 2 + lat: 44.43674 + lng: 26.125756 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.747530+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3489 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A+B+C) + address: Strada ROTASULUI + county: București + locality: Sector 1 + lat: 44.463503 + lng: 26.058647 + risk_category: RS2 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:45.863892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3490 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada RUMEOARA + county: București + locality: Sector 2 + lat: 44.441645 + lng: 26.119201 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.009579+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3491 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada RUMEOARA + county: București + locality: Sector 2 + lat: 44.441505 + lng: 26.119326 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1908 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.203050+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3492 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada RUMEOARA + county: București + locality: Sector 2 + lat: 44.441408 + lng: 26.118952 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.401642+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3493 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada RUMEOARA + county: București + locality: Sector 2 + lat: 44.441464 + lng: 26.119806 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.580611+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3494 + fields: + parent_id: null + status: 1 + street_number: 10 (bloc 16) + address: Strada RUSETU + county: București + locality: Sector 6 + lat: 44.459136 + lng: 26.038794 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1961 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.722331+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3495 + fields: + parent_id: null + status: 1 + street_number: 90 (corp A+B+C) + address: Strada SABINELOR + county: București + locality: Sector 5 + lat: 44.422695 + lng: 26.077418 + risk_category: U1 + height_regime: S+P+1E; S+P; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 515.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.821844+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3496 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SACHELARIE VISARION + county: București + locality: Sector 2 + lat: 44.442515 + lng: 26.135318 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:46.946125+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3497 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A+B) + address: Strada SAGETII + county: București + locality: Sector 2 + lat: 44.437325 + lng: 26.108406 + risk_category: RS1 + height_regime: S+P+2E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Liliana BALTATEANU + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.082379+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3498 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada SAGETII + county: București + locality: Sector 2 + lat: 44.437587 + lng: 26.108783 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.211816+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3499 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada SAGETII + county: București + locality: Sector 2 + lat: 44.437872 + lng: 26.109179 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.338805+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3500 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SALCÂMILOR + county: București + locality: Sector 2 + lat: 44.4436545 + lng: 26.1131091 + risk_category: C + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: AC nr.208/19S/2004 + has_warning_panels: null + year_built: 1936 + surface: 2396.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.485670+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3501 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada SALCAMILOR + county: București + locality: Sector 2 + lat: 44.443875 + lng: 26.11303 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1901 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.640861+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3502 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada SAPIENŢEI + county: București + locality: Sector 5 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 2189.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.796564+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3503 + fields: + parent_id: null + status: 1 + street_number: 1 (corp A) + address: Strada SAPIENŢEI + county: București + locality: Sector 5 + lat: null + lng: null + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU; Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 600.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:47.907601+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3504 + fields: + parent_id: null + status: 1 + street_number: 2 (corp A) + address: Strada SAPIENTEI + county: București + locality: Sector 5 + lat: 44.431289 + lng: 26.093967 + risk_category: RS2 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian ENESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.017008+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3505 + fields: + parent_id: null + status: 1 + street_number: 3 (corp A) + address: Strada SAPIENTEI + county: București + locality: Sector 5 + lat: 44.431237 + lng: 26.093671 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: AC nr212-S/2007 PVRTL din 30.08.2011 + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.169040+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3506 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada SAPIENTEI + county: București + locality: Sector 5 + lat: 44.431415 + lng: 26.092676 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1921 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.327455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3507 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada SARMISEGETUZA + county: București + locality: Sector 3 + lat: 44.433551 + lng: 26.105088 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1878 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.514669+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3508 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada SARMISEGETUZA + county: București + locality: Sector 3 + lat: 44.433552 + lng: 26.105081 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1883 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.711306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3509 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SARMISEGETUZA + county: București + locality: Sector 3 + lat: 44.433537 + lng: 26.104964 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:48.925000+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3510 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada SCARLAT OTULESCU + county: București + locality: Sector 5 + lat: 44.404695 + lng: 26.094285 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1960 + surface: 1194.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.043624+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3511 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada SCARLAT VÂRNAV + county: București + locality: Sector 6 + lat: 44.450642 + lng: 26.058165 + risk_category: U1 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mircea IEREMIA + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 291.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.163186+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3512 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada SCARLATESCU + county: București + locality: Sector 1 + lat: 44.453793 + lng: 26.078441 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.282557+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3513 + fields: + parent_id: null + status: 1 + street_number: 14A + address: Strada SCHITU DARVARI + county: București + locality: Sector 2 + lat: 44.436964 + lng: 26.088404 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 533.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.443015+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3514 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada ŞELARI + county: București + locality: Sector 3 + lat: 44.430395 + lng: 26.100785 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Andrei Dragoş MARCU + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1910 + surface: 1106.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.611293+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3515 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada SELARI + county: București + locality: Sector 3 + lat: 44.430362 + lng: 26.100617 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.772831+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3516 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada SELARI + county: București + locality: Sector 3 + lat: 44.43018 + lng: 26.100697 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:49.952385+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3517 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada SELARI + county: București + locality: Sector 3 + lat: 44.430776 + lng: 26.100577 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.101999+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3518 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada SELARI + county: București + locality: Sector 3 + lat: 44.430649 + lng: 26.100586 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1896 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.200241+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3519 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ŞELARI + county: București + locality: Sector 3 + lat: 44.430694 + lng: 26.100555 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1900 + surface: 1173.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.313300+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3520 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada SELARI + county: București + locality: Sector 3 + lat: 44.430605 + lng: 26.100539 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.432668+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3521 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada SEMICERCULUI + county: București + locality: Sector 1 + lat: 44.445102 + lng: 26.085628 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 18 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Nicolae ALEMAN + observations: '' + has_warning_panels: null + year_built: 1919 + surface: 2723.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.577758+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3522 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada SEMICERCULUI + county: București + locality: Sector 1 + lat: 44.444928 + lng: 26.086098 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1891 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.730729+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3523 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada SEMILUNEI + county: București + locality: Sector 2 + lat: 44.439061 + lng: 26.112502 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1897 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:50.905703+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3524 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada SEMILUNEI + county: București + locality: Sector 2 + lat: 44.438995 + lng: 26.112026 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1887 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.103019+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3525 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SEMILUNEI + county: București + locality: Sector 2 + lat: 44.436256 + lng: 26.109529 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Dinu CIOBOTARIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 3945.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.246849+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3526 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ŞEPCARI + county: București + locality: Sector 3 + lat: 44.430699 + lng: 26.103074 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 403.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.364690+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3527 + fields: + parent_id: null + status: 1 + street_number: 12÷14 + address: Strada ŞEPCARI + county: București + locality: Sector 3 + lat: 44.4306374 + lng: 26.1029006 + risk_category: C + height_regime: S+P+4E (2÷4 retrase) + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Radu PETROVICI Bogdan GULEAC + observations: AC nr.203/1224479/2014 PVRTL nr.13/2014 + has_warning_panels: null + year_built: 1910 + surface: 788.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.489681+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3528 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ŞEPCARI + county: București + locality: Sector 3 + lat: 44.4305753 + lng: 26.1028397 + risk_category: C + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Laurentiu SPOIALA + observations: AC nr.665/2002 PVRTL nr.244/2010 + has_warning_panels: null + year_built: 1900 + surface: 840.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.646298+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3529 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada SEPCARI + county: București + locality: Sector 3 + lat: 44.430223 + lng: 26.102368 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Zaharia PAULIUC + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.795071+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3530 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada SEPCARI + county: București + locality: Sector 3 + lat: 44.430734 + lng: 26.103295 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:51.948082+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3531 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SEVASTOPOL + county: București + locality: Sector 1 + lat: 44.449183 + lng: 26.083989 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2006 + certified_expert: Ion VÂRŞĂ + observations: Încadrare în clasă de risc seismic în anul 2006; AC nr.92/572299/2006, + PVRTL nr.1/2009 + has_warning_panels: null + year_built: 1907 + surface: 960.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.103448+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3532 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada SFANTA ECATERINA + county: București + locality: Sector 4 + lat: 44.42411 + lng: 26.100872 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1911 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.240872+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3533 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada SFANTA ECATERINA + county: București + locality: Sector 4 + lat: 44.423844 + lng: 26.100554 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.363139+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3534 + fields: + parent_id: null + status: 1 + street_number: 17 (corp A+B) + address: Strada SFANTA ECATERINA + county: București + locality: Sector 4 + lat: 44.423684 + lng: 26.100361 + risk_category: RS1 + height_regime: S+P+2E; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Traian POPP + observations: '' + has_warning_panels: null + year_built: 1904 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.470496+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3535 + fields: + parent_id: null + status: 1 + street_number: 18A + address: Strada SFANTA MARIA + county: București + locality: Sector 1 + lat: 44.462076 + lng: 26.070609 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.610374+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3536 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Strada SFÂNTA MARIA + county: București + locality: Sector 1 + lat: 44.460074 + lng: 26.068837 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 309.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.763698+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3537 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada SFANTA VINERI + county: București + locality: Sector 3 + lat: 44.430679 + lng: 26.106272 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1298.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:52.880254+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3538 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada SFÂNTA VINERI + county: București + locality: Sector 3 + lat: 44.430995 + lng: 26.106013 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Paul VERNESCU. Mircea DABIJA + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1762.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.045017+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3539 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada SFÂNTA VINERI + county: București + locality: Sector 3 + lat: 44.430829 + lng: 26.106252 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 819.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.243581+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3540 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada SFĂNTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.43579 + lng: 26.088963 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Vasile BOGDAN + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.407309+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3541 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436204 + lng: 26.086865 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1893 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.523514+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3542 + fields: + parent_id: null + status: 1 + street_number: 13÷13A + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436046 + lng: 26.087336 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1918 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.645464+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3543 + fields: + parent_id: null + status: 1 + street_number: 14 (corp D) + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.4362409 + lng: 26.0866303 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.771777+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3544 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436368 + lng: 26.085684 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:53.899639+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3545 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada SFÂNTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436223 + lng: 26.086302 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: 3312.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.036655+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3546 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436252 + lng: 26.085877 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.187599+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3547 + fields: + parent_id: null + status: 1 + street_number: 29A + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436278 + lng: 26.08567 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Ovidiu GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.358815+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3548 + fields: + parent_id: null + status: 1 + street_number: 30B + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.4364472 + lng: 26.0845239 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.532826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3549 + fields: + parent_id: null + status: 1 + street_number: 30C + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.4363218 + lng: 26.0856149 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.650727+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3550 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada SFĂNTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.436302 + lng: 26.085462 + risk_category: U1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 153.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.780564+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3551 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada SFANTUL CONSTANTIN + county: București + locality: Sector 1 + lat: 44.435933 + lng: 26.088155 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:54.928983+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3552 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada SFÂNTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.433178 + lng: 26.075502 + risk_category: C + height_regime: P+4E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Grigore ARSENIE + observations: PVRTL nr.2776/2011 + has_warning_panels: null + year_built: 1936 + surface: 1295.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.058079+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3553 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SFANTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.433772 + lng: 26.076686 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.223377+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3554 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada SFÂNTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.433685 + lng: 26.076484 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1112.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.429982+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3555 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada SFÂNTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.433597 + lng: 26.076283 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.641569+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3556 + fields: + parent_id: null + status: 1 + street_number: 39 (corp A+B+C) + address: Strada SFANTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.4326347 + lng: 26.0722956 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu DIAMANDOPOL + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.744161+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3557 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SFANTUL ELEFTERIE + county: București + locality: Sector 5 + lat: 44.433948 + lng: 26.077088 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.847496+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3558 + fields: + parent_id: null + status: 1 + street_number: 5 (corp A) + address: Strada SFANTUL NICETA + county: București + locality: Sector 2 + lat: 44.457425 + lng: 26.117215 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin DALBAN + observations: '' + has_warning_panels: null + year_built: 1916 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:55.966528+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3559 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada SFANTUL SPIRIDON + county: București + locality: Sector 2 + lat: 44.441181 + lng: 26.107206 + risk_category: N/A + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.087900+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3560 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SFANTUL SPIRIDON + county: București + locality: Sector 2 + lat: 44.441993 + lng: 26.107203 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1970 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.225734+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3561 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada SFANTUL SPIRIDON + county: București + locality: Sector 2 + lat: 44.440978 + lng: 26.107207 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.400255+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3562 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SFANTUL SPIRIDON + county: București + locality: Sector 2 + lat: 44.441587 + lng: 26.107205 + risk_category: RS3 + height_regime: S+Ds+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.613805+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3563 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada SFANTUL STEFAN + county: București + locality: Sector 2 + lat: 44.435773 + lng: 26.116691 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.766610+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3564 + fields: + parent_id: null + status: 1 + street_number: 19 (corp A+B) + address: Strada SFANTUL STEFAN + county: București + locality: Sector 2 + lat: 44.436861 + lng: 26.116835 + risk_category: RS3 + height_regime: DS+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 760.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.868092+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3565 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada SFÂNTUL ŞTEFAN + county: București + locality: Sector 2 + lat: 44.435051 + lng: 26.116479 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:56.985243+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3566 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada SFINŢII APOSTOLI + county: București + locality: Sector 1 + lat: 44.428357 + lng: 26.095197 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1897 + surface: 135.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.125472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3567 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada SFINŢII APOSTOLI + county: București + locality: Sector 5 + lat: 44.429154 + lng: 26.094336 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 875.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.264132+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3568 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada SFINŢII APOSTOLI + county: București + locality: Sector 5 + lat: 44.429208 + lng: 26.094111 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 175.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.410860+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3569 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada SFINTII VOIEVOZI + county: București + locality: Sector 1 + lat: 44.446317 + lng: 26.084454 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Octavian MANOIU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.565518+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3570 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada SFINŢII VOIEVOZI + county: București + locality: Sector 1 + lat: 44.446563 + lng: 26.085577 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 29 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 1848.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.764728+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3571 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada SFINŢII VOIEVOZI + county: București + locality: Sector 1 + lat: 44.447154 + lng: 26.088487 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Cristian ENESCU + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1920 + surface: 572.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:57.902545+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3572 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada SFINTILOR + county: București + locality: Sector 2 + lat: 44.43536 + lng: 26.107978 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.008346+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3573 + fields: + parent_id: null + status: 1 + street_number: 11 (corp C) + address: Strada SFINTILOR + county: București + locality: Sector 2 + lat: 44.4355904 + lng: 26.1084546 + risk_category: C + height_regime: P + is_still_present: true + consolidation_status: DEMOLISHED + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Florin VASILIU + observations: Imobil propus pentru demolare + has_warning_panels: null + year_built: 1920 + surface: 30.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.129640+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3574 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada SFINŢILOR + county: București + locality: Sector 2 + lat: 44.435522 + lng: 26.108124 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 1248.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.258192+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3575 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada SFINTILOR + county: București + locality: Sector 2 + lat: 44.43523 + lng: 26.107468 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.400176+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3576 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SFINTILOR + county: București + locality: Sector 2 + lat: 44.435272 + lng: 26.107788 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.538314+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3577 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada SFINTILOR + county: București + locality: Sector 2 + lat: 44.435406 + lng: 26.107847 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.707226+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3578 + fields: + parent_id: null + status: 1 + street_number: 41 (bloc S14) + address: Strada SIBIU + county: București + locality: Sector 6 + lat: 44.420274 + lng: 26.048853 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1974 + surface: 6816.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:58.880255+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3579 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada SILFIDELOR + county: București + locality: Sector 5 + lat: 44.434102 + lng: 26.090696 + risk_category: U2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Maria DARIE + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 28.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.014743+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3580 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.441431 + lng: 26.113927 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.134201+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3581 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.441524 + lng: 26.114067 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.261777+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3582 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.440099 + lng: 26.112103 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Eugen ANTONESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 706.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.386555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3583 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.441635 + lng: 26.11418 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.509159+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3584 + fields: + parent_id: null + status: 1 + street_number: 27÷29 (corp A+B) + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.441726 + lng: 26.11411 + risk_category: RS3 + height_regime: S+P+1E+Ma; S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.632403+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3585 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.442243 + lng: 26.114593 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.786356+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3586 + fields: + parent_id: null + status: 1 + street_number: '67' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.443204 + lng: 26.115229 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:49:59.939478+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3587 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.44328 + lng: 26.115691 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Sorin APOLZAN + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1936 + surface: 349.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.088331+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3588 + fields: + parent_id: null + status: 1 + street_number: '79' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.443408 + lng: 26.116105 + risk_category: C + height_regime: 'C1: S+Ds+1E+Maparţial C2: Ds+P' + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2014 + certified_expert: Gheorghe SARBU + observations: AC nr.697/1273653/2014 AC nr.620/1371471/2015 PVRTL nr.1/2016 + has_warning_panels: null + year_built: 1936 + surface: 483.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.188446+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3589 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada SILVESTRU + county: București + locality: Sector 2 + lat: 44.440738 + lng: 26.112724 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.297697+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3590 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada ŞIPOTUL FÂNTÂNILOR + county: București + locality: Sector 1 + lat: 44.438784 + lng: 26.092244 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 21 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1948 + surface: 1697.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.416256+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3591 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.434634 + lng: 26.10515 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan CAPATINA + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 1438.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.565381+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3592 + fields: + parent_id: null + status: 1 + street_number: 14÷18 + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.4345982 + lng: 26.1052326 + risk_category: RS2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1971 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.709044+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3593 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada SLĂNIC + county: București + locality: Sector 3 + lat: 44.4338747 + lng: 26.1046115 + risk_category: C + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Armand NEFIAN + observations: AC nr.756/1096401/2012 PVRTL nr.1/2014 + has_warning_panels: null + year_built: 1921 + surface: 372.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.859544+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3594 + fields: + parent_id: null + status: 1 + street_number: 20÷22 + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.435181 + lng: 26.104997 + risk_category: RS1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1950 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:00.996773+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3595 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.435333 + lng: 26.104904 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.149715+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3596 + fields: + parent_id: null + status: 1 + street_number: 26 (corp B) + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.435876 + lng: 26.104625 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.271763+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3597 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.434748 + lng: 26.105205 + risk_category: RS2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.388944+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3598 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SLANIC + county: București + locality: Sector 3 + lat: 44.434904 + lng: 26.105108 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1850 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.521108+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3599 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada SLAVESTI + county: București + locality: Sector 1 + lat: 44.449453 + lng: 26.101343 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 250.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.668632+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3600 + fields: + parent_id: null + status: 1 + street_number: 11 (corp A+B) + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.4323641 + lng: 26.1001811 + risk_category: C + height_regime: S+P+7E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: AC nr.2/2004 PVRTL nr.5/2006 + has_warning_panels: null + year_built: 1905 + surface: 849.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.818862+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3601 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431957 + lng: 26.09988 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:01.959024+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3602 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431791 + lng: 26.099864 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1906 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.101555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3603 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431453 + lng: 26.099718 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1956 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.269109+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3604 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431729 + lng: 26.100007 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.393113+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3605 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431214 + lng: 26.099517 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 31 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 7273.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.496823+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3606 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431631 + lng: 26.100042 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: Încadrat in clasa I de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1900 + surface: 422.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.616083+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3607 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.430994 + lng: 26.099661 + risk_category: RS1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.745211+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3608 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431611 + lng: 26.099853 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:02.926202+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3609 + fields: + parent_id: null + status: 1 + street_number: 23÷25 + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431491 + lng: 26.099846 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.081241+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3610 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.430656 + lng: 26.099787 + risk_category: U1 + height_regime: S+P+1E+ Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2014 + has_warning_panels: null + year_built: 1910 + surface: 110.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.259533+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3611 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431395 + lng: 26.100072 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1906 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.441127+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3612 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.430546 + lng: 26.099825 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.539167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3613 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.43126 + lng: 26.100056 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.652545+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3614 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431311 + lng: 26.099836 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.802917+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3615 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431174 + lng: 26.099993 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:03.975920+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3616 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.431027 + lng: 26.099847 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.164752+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3617 + fields: + parent_id: null + status: 1 + street_number: '41' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.430462 + lng: 26.100226 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1884 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.340672+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3618 + fields: + parent_id: null + status: 1 + street_number: '43' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.430214 + lng: 26.100465 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.479326+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3619 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada SMÂRDAN + county: București + locality: Sector 3 + lat: 44.432792 + lng: 26.100282 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: 1716.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.596716+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3620 + fields: + parent_id: null + status: 1 + street_number: 3÷5 + address: Strada SOARELUI + county: București + locality: Sector 3 + lat: 44.430486 + lng: 26.10152 + risk_category: U2 + height_regime: S+P+1E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 1492.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.709929+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3621 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SOMESULUI + county: București + locality: Sector 1 + lat: 44.46173 + lng: 26.061252 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:04.849155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3622 + fields: + parent_id: null + status: 1 + street_number: 5 (corp C1) + address: Strada SPĂTARU PREDA („ŢESĂTORIILE REUNITE” S.A.) + county: București + locality: Sector 5 + lat: null + lng: null + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 4416.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.003712+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3623 + fields: + parent_id: null + status: 1 + street_number: 5 (corp C2) + address: Strada SPĂTARU PREDA („ŢESĂTORIILE REUNITE” S.A.) + county: București + locality: Sector 5 + lat: null + lng: null + risk_category: U2 + height_regime: P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dinu CIOBOTARU + observations: '' + has_warning_panels: null + year_built: 1980 + surface: 2915.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.173250+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3624 + fields: + parent_id: null + status: 1 + street_number: 5 (corp C6) + address: Strada SPĂTARU PREDA („ŢESĂTORIILE REUNITE” S.A.) + county: București + locality: Sector 5 + lat: null + lng: null + risk_category: U2 + height_regime: P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Dinu CIOBOTARU + observations: '' + has_warning_panels: null + year_built: 1977 + surface: 18.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.354411+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3625 + fields: + parent_id: null + status: 1 + street_number: 5 (corp C7) + address: Strada SPĂTARU PREDA („ŢESĂTORIILE REUNITE” S.A.) + county: București + locality: Sector 5 + lat: 44.4121954 + lng: 26.0846391 + risk_category: U3 + height_regime: P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: 1563.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.582240+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3626 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada SPĂTARUL NICOLAE MILESCU + county: București + locality: Sector 2 + lat: 44.446526 + lng: 26.139194 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.714141+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3627 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.438157 + lng: 26.112338 + risk_category: N/A + height_regime: P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1898 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.828093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3628 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada SPĂTARULUI + county: București + locality: Sector 2 + lat: 44.437333 + lng: 26.111713 + risk_category: U1 + height_regime: 2S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 2706.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:05.967120+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3629 + fields: + parent_id: null + status: 1 + street_number: 17bis + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.439087 + lng: 26.113149 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 12.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.107291+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3630 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada SPĂTARULUI + county: București + locality: Sector 2 + lat: 44.437639 + lng: 26.11175 + risk_category: U2 + height_regime: S+P+1E+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 2607.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.241146+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3631 + fields: + parent_id: null + status: 1 + street_number: 27 (corp A+B) + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.439703 + lng: 26.113529 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin GEORGRESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.401162+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3632 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.439829 + lng: 26.113625 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.578184+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3633 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.439764 + lng: 26.113799 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.743368+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3634 + fields: + parent_id: null + status: 1 + street_number: '36' + address: Strada SPĂTARULUI + county: București + locality: Sector 2 + lat: 44.440184 + lng: 26.114102 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 2131.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.860380+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3635 + fields: + parent_id: null + status: 1 + street_number: '37' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.440353 + lng: 26.114121 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:06.983155+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3636 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.44051 + lng: 26.114445 + risk_category: RS3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.104835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3637 + fields: + parent_id: null + status: 1 + street_number: 6÷6A + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.437882 + lng: 26.112262 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 3353.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.219795+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3638 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SPATARULUI + county: București + locality: Sector 2 + lat: 44.438006 + lng: 26.112358 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.325925+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3639 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada SPERANŢEI + county: București + locality: Sector 2 + lat: 44.438459 + lng: 26.108541 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Stere CARACOTI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 15.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.431560+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3640 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada SPERANŢEI + county: București + locality: Sector 2 + lat: 44.438122 + lng: 26.108455 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Stere CARACOTI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 16.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.550861+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3641 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada SPERANŢEI + county: București + locality: Sector 2 + lat: 44.438272 + lng: 26.108555 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 26 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1941 + surface: 1255.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.690468+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3642 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada SPERANŢEI + county: București + locality: Sector 2 + lat: 44.439487 + lng: 26.1094481 + risk_category: C + height_regime: Ds+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: AC nr.155/1116755/2013 PVRTL nr.1219359/2014 + has_warning_panels: null + year_built: 1929 + surface: 729.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.827567+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3643 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada SPERANTEI + county: București + locality: Sector 2 + lat: 44.43714 + lng: 26.107627 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Liliana BALTATEANU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:07.943880+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3644 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada SPERANȚEI + county: București + locality: Sector 2 + lat: 44.440503 + lng: 26.1102503 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 2 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2015 + certified_expert: Dinu CIOBOTARIU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 300.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:08.224931+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3645 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada SPERANTEI + county: București + locality: Sector 2 + lat: 44.437735 + lng: 26.108053 + risk_category: RS2 + height_regime: S+Ds+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 9815.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:08.386184+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3646 + fields: + parent_id: null + status: 1 + street_number: 10 (corp A+B+C) + address: Strada SPINENI + county: București + locality: Sector 4 + lat: 44.418832 + lng: 26.102998 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:08.549838+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3647 + fields: + parent_id: null + status: 1 + street_number: 7A + address: Strada SPIRU HARET + county: București + locality: Sector 1 + lat: 44.440788 + lng: 26.089954 + risk_category: U3 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 779.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:08.698325+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3648 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada SPIRU HARET + county: București + locality: Sector 1 + lat: 44.440788 + lng: 26.089954 + risk_category: U2 + height_regime: Ds+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Constantin FIRTEA + observations: '' + has_warning_panels: null + year_built: 1886 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:08.899422+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3649 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada STANISLAV CIHOVSCHI + county: București + locality: Sector 1 + lat: 44.447901 + lng: 26.097714 + risk_category: RS3 + height_regime: S+Ds+Mz+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.036306+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3650 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada STAVROPOLEOS + county: București + locality: Sector 3 + lat: 44.432063 + lng: 26.097875 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.145350+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3651 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada STAVROPOLEOS + county: București + locality: Sector 3 + lat: 44.432063 + lng: 26.097875 + risk_category: U3 + height_regime: S+P+2E; S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mircea MIRONESCU + observations: Încadrare în clasă de risc seismic în anul 2010 + has_warning_panels: null + year_built: 1900 + surface: 3404.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.277344+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3652 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada STAVROPOLEOS + county: București + locality: Sector 3 + lat: 44.432063 + lng: 26.097875 + risk_category: C + height_regime: S+P+2E + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicolae ALEMAN + observations: AC nr.3-S/1994 PVRTL nr.5309/1996 + has_warning_panels: null + year_built: 1897 + surface: 900.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.424625+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3653 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada STEFAN CAPSA + county: București + locality: Sector 5 + lat: 44.432435 + lng: 26.067731 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.585375+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3654 + fields: + parent_id: null + status: 1 + street_number: 8÷10 + address: Strada STEFAN CAPSA + county: București + locality: Sector 5 + lat: 44.433544 + lng: 26.06737 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.745750+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3655 + fields: + parent_id: null + status: 1 + street_number: 12C + address: Strada ŞTEFAN LUCHIAN + county: București + locality: Sector 2 + lat: 44.436372 + lng: 26.112524 + risk_category: U1 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: CONSOLIDAT PARŢIAL ! + has_warning_panels: null + year_built: 1933 + surface: 864.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:09.914697+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3656 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ŞTEFAN LUCHIAN + county: București + locality: Sector 2 + lat: 44.436728 + lng: 26.11221 + risk_category: U1 + height_regime: Ds+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Marin TEODOR; Valentin GEORGESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 212.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.045769+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3657 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada STEFAN LUCHIAN + county: București + locality: Sector 2 + lat: 44.436476 + lng: 26.11256 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.159096+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3658 + fields: + parent_id: null + status: 1 + street_number: 11A (corp A) + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.4345 + lng: 26.1174 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Eugeniu DUMITRACHE + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1940 + surface: 360.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.286502+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3659 + fields: + parent_id: null + status: 1 + street_number: 11B (corp B) + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.434711 + lng: 26.1174427 + risk_category: C + height_regime: S+P+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: AC nr.567/65M/2002; PVRTL nr.25662(2322)/2004 + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.404954+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3660 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.434067 + lng: 26.1166 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.525275+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3661 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.435034 + lng: 26.118058 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.653441+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3662 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.4361 + lng: 26.119048 + risk_category: RS3 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion VARSA + observations: '' + has_warning_panels: null + year_built: 1947 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.773106+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3663 + fields: + parent_id: null + status: 1 + street_number: '31' + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.436564 + lng: 26.119335 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dan GHIOCEL + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 1.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:10.918546+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3664 + fields: + parent_id: null + status: 1 + street_number: 32B + address: Strada STEFAN MIHAILEANU + county: București + locality: Sector 2 + lat: 44.435582 + lng: 26.118925 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.064253+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3665 + fields: + parent_id: null + status: 1 + street_number: '40' + address: Strada ŞTEFAN MIHĂILEANU + county: București + locality: Sector 2 + lat: 44.434406 + lng: 26.11724 + risk_category: U3 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1943 + surface: 1208.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.186759+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3666 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada ŞTEFAN MIHĂILEANU + county: București + locality: Sector 2 + lat: 44.434406 + lng: 26.11724 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1931 + surface: 238.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.300675+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3667 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada ŞTEFAN MIHĂILEANU + county: București + locality: Sector 2 + lat: 44.434406 + lng: 26.11724 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 533.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.456995+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3668 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc C6) + address: Strada STEFAN PROTOPOPESCU + county: București + locality: Sector 1 + lat: 44.463228 + lng: 26.095966 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2008 + certified_expert: Dan POPESCU + observations: Încadrare în clasă de risc seismic în anul 2008 + has_warning_panels: null + year_built: 1962 + surface: 4676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.581723+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3669 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada STEFAN PROTOPOPESCU + county: București + locality: Sector 1 + lat: 44.463799 + lng: 26.099878 + risk_category: RS3 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.709877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3670 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada STEFAN PROTOPOPESCU + county: București + locality: Sector 1 + lat: 44.463334 + lng: 26.096753 + risk_category: RS2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 4641.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:11.864110+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3671 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada STEFAN PROTOPOPESCU + county: București + locality: Sector 1 + lat: 44.463559 + lng: 26.098321 + risk_category: RS3 + height_regime: S+P+12E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 4676.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.016529+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3672 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada STEFAN PROTOPOPESCU + county: București + locality: Sector 1 + lat: 44.463683 + lng: 26.0991 + risk_category: RS2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 4641.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.154789+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3673 + fields: + parent_id: null + status: 1 + street_number: 38 (corp A+B; 15) + address: Strada STEFAN STOIKA (colț cu Strada IANI BUZOIANI) + county: București + locality: Sector 1 + lat: 44.4613808 + lng: 26.0622252 + risk_category: RS3 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.295729+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3674 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431326 + lng: 26.106965 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 129344.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.421091+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3675 + fields: + parent_id: null + status: 1 + street_number: 10A + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431316 + lng: 26.107166 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Nicola GOSPODINOV + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.547101+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3676 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431498 + lng: 26.107244 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1879 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.680709+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3677 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.43142 + lng: 26.107434 + risk_category: U2 + height_regime: Ds+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2016 + certified_expert: Mihai URSACHESCU + observations: Încadrare în clasă de risc seismic în anul 2016 + has_warning_panels: null + year_built: 1910 + surface: 1109.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.812376+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3678 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.43153 + lng: 26.107378 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:12.965428+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3679 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada STELEA SPĂTARU + county: București + locality: Sector 3 + lat: 44.431542 + lng: 26.107309 + risk_category: U1 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 52 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 4125.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.134556+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3680 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431542 + lng: 26.107309 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai PERJESCU + observations: '' + has_warning_panels: null + year_built: 1880 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.299501+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3681 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431662 + lng: 26.107268 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.435842+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3682 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431542 + lng: 26.107309 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Vasile BOGDAN + observations: '' + has_warning_panels: null + year_built: 1903 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.529335+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3683 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431277 + lng: 26.106485 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.655635+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3684 + fields: + parent_id: null + status: 1 + street_number: 7 (corp A+B+C) + address: Strada STELEA SPATARU + county: București + locality: Sector 3 + lat: 44.431461 + lng: 26.106746 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.790528+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3685 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 2, tr.I+II) + address: Strada STELIAN MIHALE + county: București + locality: Sector 3 + lat: 44.4132667 + lng: 26.1681495 + risk_category: U3 + height_regime: S tehnic+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gavril POP + observations: Încadrare în clasă de risc seismic RsIII spre RsII în anul 2013 + (documentaţie tehnico economică elaborată pentru creşterea eficienţei energetice + a construcţiei) + has_warning_panels: null + year_built: 1974 + surface: 671.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:13.928706+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3686 + fields: + parent_id: null + status: 1 + street_number: '96' + address: Strada STIRBEI VODA + county: București + locality: Sector 1 + lat: 44.440137 + lng: 26.085578 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1905 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.069061+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3687 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.4401977 + lng: 26.0935664 + risk_category: RS2 + height_regime: S+P+1E ; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.211320+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3688 + fields: + parent_id: null + status: 1 + street_number: 122 (corp A+B) + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440116 + lng: 26.082954 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 132.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.366247+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3689 + fields: + parent_id: null + status: 1 + street_number: '126' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440113 + lng: 26.08266 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.535873+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3690 + fields: + parent_id: null + status: 1 + street_number: '129' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.438231 + lng: 26.078401 + risk_category: U2 + height_regime: P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1929 + surface: 960.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.639797+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3691 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440264 + lng: 26.092795 + risk_category: U1 + height_regime: P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 23 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 4414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.763920+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3692 + fields: + parent_id: null + status: 1 + street_number: 17 (corp A+B) + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.4400143 + lng: 26.0929144 + risk_category: C + height_regime: S+P+6E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 58 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai NAVODARIU + observations: PVRTL nr.1181/1/2009 + has_warning_panels: null + year_built: 1936 + surface: 4619.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:14.914472+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3693 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440268 + lng: 26.092431 + risk_category: U1 + height_regime: D+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 33 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2001 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 425.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.098097+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3694 + fields: + parent_id: null + status: 1 + street_number: '22' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440263 + lng: 26.092183 + risk_category: U1 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2010 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1521.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.288321+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3695 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.439886 + lng: 26.0918 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1941 + surface: 198.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.502257+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3696 + fields: + parent_id: null + status: 1 + street_number: 29A + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.439894 + lng: 26.091365 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: 2453.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.657269+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3697 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440006 + lng: 26.091347 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.754503+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3698 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.44012 + lng: 26.090602 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:15.892945+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3699 + fields: + parent_id: null + status: 1 + street_number: '61' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.439773 + lng: 26.08614 + risk_category: RS1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.070068+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3700 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440241 + lng: 26.088114 + risk_category: RS2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.244440+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3701 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.439985 + lng: 26.085002 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurelian PAVELESCU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 1142.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.452937+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3702 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Strada ŞTIRBEI VODĂ + county: București + locality: Sector 1 + lat: 44.440108 + lng: 26.086029 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1488.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.591231+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3703 + fields: + parent_id: null + status: 1 + street_number: 53 (corp A) + address: Strada STOIAN MILITARU + county: București + locality: Sector 4 + lat: 44.396759 + lng: 26.101755 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.736170+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3704 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc O4) + address: Strada STRADUINTEI + county: București + locality: Sector 4 + lat: 44.381959 + lng: 26.118072 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 240 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Constantin CIOVEIE + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 1944.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.851409+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3705 + fields: + parent_id: null + status: 1 + street_number: 4 (bloc A5) + address: Strada STRADUINTEI + county: București + locality: Sector 4 + lat: 44.382869 + lng: 26.120073 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 44 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 354.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:16.978973+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3706 + fields: + parent_id: null + status: 1 + street_number: 6 (bloc R5) + address: Strada STRĂDUINŢEI + county: București + locality: Sector 4 + lat: 44.38337 + lng: 26.12031 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 82 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1964 + surface: 582.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.113513+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3707 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc A13) + address: Strada STUPILOR + county: București + locality: Sector 4 + lat: 44.37806 + lng: 26.114647 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 354.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.226827+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3708 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada SUVENIR + county: București + locality: Sector 2 + lat: 44.44482 + lng: 26.117348 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Liliana BALTATEANU + observations: '' + has_warning_panels: null + year_built: 1929 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.351197+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3709 + fields: + parent_id: null + status: 1 + street_number: 22 (corp A+B) + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.419792 + lng: 26.10959 + risk_category: RS2 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.501425+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3710 + fields: + parent_id: null + status: 1 + street_number: 24 (corp A+B) + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.41978 + lng: 26.109853 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.684982+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3711 + fields: + parent_id: null + status: 1 + street_number: 25 (corp A+B) + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.419876 + lng: 26.109731 + risk_category: RS2 + height_regime: S+P+1E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.843478+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3712 + fields: + parent_id: null + status: 1 + street_number: 27 (corp A+B) + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.419865 + lng: 26.109959 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:17.952118+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3713 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.419758 + lng: 26.110645 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.069235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3714 + fields: + parent_id: null + status: 1 + street_number: 33 (corp A+B) + address: Strada TABACARILOR + county: București + locality: Sector 4 + lat: 44.419846 + lng: 26.110625 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru BRANZEI + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.213750+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3715 + fields: + parent_id: null + status: 1 + street_number: 13 (bloc 16) + address: Strada TACHE GHEORGHE + county: București + locality: Sector 4 + lat: 44.393623 + lng: 26.118924 + risk_category: N/A + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Niculae TUDOSE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.347667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3716 + fields: + parent_id: null + status: 1 + street_number: 13 (bloc 14) + address: Strada TACHE GHEORGHE + county: București + locality: Sector 4 + lat: 44.39375938 + lng: 26.1185737 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 40 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Marin TEODOR + observations: '' + has_warning_panels: null + year_built: 1962 + surface: 3544.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.470268+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3717 + fields: + parent_id: null + status: 1 + street_number: 13 (bloc 17, tr.I÷VIII) + address: Strada TACHE GHEORGHE + county: București + locality: Sector 4 + lat: 44.3936249 + lng: 26.1189134 + risk_category: U2 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 320 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Corneliu MUDRACENCO + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 24123.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.608737+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3718 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada TACHE IONESCU + county: București + locality: Sector 1 + lat: 44.444065 + lng: 26.096634 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 266.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.784241+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3719 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada TACHE IONESCU + county: București + locality: Sector 1 + lat: 44.44416 + lng: 26.096861 + risk_category: U1 + height_regime: S+P+9E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 221.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:18.977268+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3720 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada TACHE IONESCU + county: București + locality: Sector 1 + lat: 44.444256 + lng: 26.097087 + risk_category: RS3 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 2857.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.122157+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3721 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada TACHE IONESCU + county: București + locality: Sector 1 + lat: 44.444447 + lng: 26.097842 + risk_category: U2 + height_regime: S+P+11E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 51 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 4979.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.247151+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3722 + fields: + parent_id: null + status: 1 + street_number: 2 (bloc R7) + address: Strada TÂRGU NEAMŢ + county: București + locality: Sector 6 + lat: 44.4216747 + lng: 26.0285474 + risk_category: U2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 88 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2000 + certified_expert: Zefir APOSTOL + observations: '' + has_warning_panels: null + year_built: 1971 + surface: 6996.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.363515+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3723 + fields: + parent_id: null + status: 1 + street_number: 21÷23 + address: Strada TEHERAN + county: București + locality: Sector 1 + lat: 44.465214 + lng: 26.092503 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1962 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.482801+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3724 + fields: + parent_id: null + status: 1 + street_number: '108' + address: Strada TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.46299 + lng: 26.126622 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.616183+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3725 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.457581 + lng: 26.129241 + risk_category: RS3 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1976 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.760533+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3726 + fields: + parent_id: null + status: 1 + street_number: '92' + address: Strada TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.461147 + lng: 26.126673 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1943 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:19.919937+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3727 + fields: + parent_id: null + status: 1 + street_number: 96 (corp A+B) + address: Strada TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.461687 + lng: 26.126559 + risk_category: RS3 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.075722+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3728 + fields: + parent_id: null + status: 1 + street_number: '98' + address: Strada TEIUL DOAMNEI + county: București + locality: Sector 2 + lat: 44.461957 + lng: 26.126502 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1945 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.188647+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3729 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada TELEAJEN + county: București + locality: Sector 2 + lat: 44.435587 + lng: 26.129155 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1967 + surface: 515.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.310022+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3730 + fields: + parent_id: null + status: 1 + street_number: 72 (corp A+B) + address: Strada TELEAJEN + county: București + locality: Sector 2 + lat: 44.434264 + lng: 26.130954 + risk_category: U2 + height_regime: S+P+1E; S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 414.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.426223+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3731 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada TEMISANA + county: București + locality: Sector 1 + lat: 44.442141 + lng: 26.08656 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin PAUN + observations: '' + has_warning_panels: null + year_built: 1924 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.549144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3732 + fields: + parent_id: null + status: 1 + street_number: 20B + address: Strada TEODORESCU G. DEM + county: București + locality: Sector 3 + lat: 44.429608 + lng: 26.128533 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ioan STOICOVICI + observations: '' + has_warning_panels: null + year_built: 1941 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.665829+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3733 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada TEODOSIE RUDEANU + county: București + locality: Sector 1 + lat: 44.45486 + lng: 26.069888 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1914 + surface: 56.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.828326+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3734 + fields: + parent_id: null + status: 1 + street_number: 146C + address: Strada TEPES VODA + county: București + locality: Sector 2 + lat: 44.436265 + lng: 26.134291 + risk_category: RS3 + height_regime: S+P+1E; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Viorel CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:20.983962+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3735 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada TEPES VODA + county: București + locality: Sector 2 + lat: 44.433884 + lng: 26.122293 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.155507+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3736 + fields: + parent_id: null + status: 1 + street_number: '72' + address: Strada TEPES VODA + county: București + locality: Sector 2 + lat: 44.435283 + lng: 26.125763 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.289556+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3737 + fields: + parent_id: null + status: 1 + street_number: '78' + address: Strada TEPES VODA + county: București + locality: Sector 2 + lat: 44.435338 + lng: 26.125998 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.415310+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3738 + fields: + parent_id: null + status: 1 + street_number: 84C + address: Strada ŢEPEŞ VODĂ + county: București + locality: Sector 2 + lat: 44.435392 + lng: 26.127018 + risk_category: U1 + height_regime: S+P; S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 784.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.543429+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3739 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada TERMOPILE + county: București + locality: Sector 2 + lat: 44.438779 + lng: 26.110488 + risk_category: N/A + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.661637+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3740 + fields: + parent_id: null + status: 1 + street_number: 14A + address: Strada THEODOR D. SPERANTIA + county: București + locality: Sector 3 + lat: 44.42476 + lng: 26.124503 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.776541+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3741 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada THOMA IONESCU + county: București + locality: Sector 5 + lat: 44.43058 + lng: 26.068766 + risk_category: RS2 + height_regime: S+P+1E+Ma; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:21.905897+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3742 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada THOMA IONESCU + county: București + locality: Sector 5 + lat: 44.430952 + lng: 26.071173 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.057845+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3743 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada THOMAS MASARYK + county: București + locality: Sector 2 + lat: 44.440827 + lng: 26.105194 + risk_category: N/A + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.225926+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3744 + fields: + parent_id: null + status: 1 + street_number: '9' + address: Strada THOMAS MASARYK + county: București + locality: Sector 2 + lat: 44.441026 + lng: 26.10602 + risk_category: U3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Corneliu NICUT + observations: Încadrare în clasă de risc seismic în anul 2009 + has_warning_panels: null + year_built: 1931 + surface: 1335.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.373717+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3745 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada TINCANI + county: București + locality: Sector 6 + lat: 44.420795 + lng: 26.04152 + risk_category: U3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 100 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Gheorghe POPESCU + observations: '' + has_warning_panels: null + year_built: 1965 + surface: 10866.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.499418+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3746 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada TITU MAIORESCU + county: București + locality: Sector 2 + lat: 44.446131 + lng: 26.12472 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 800.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.642745+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3747 + fields: + parent_id: null + status: 1 + street_number: '119' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.448217 + lng: 26.116169 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.782882+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3748 + fields: + parent_id: null + status: 1 + street_number: '121' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.448404 + lng: 26.116223 + risk_category: U4 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2019 + certified_expert: Ionel BELGUN + observations: Încadrare în clasă de risc seismic în anul 2019 + has_warning_panels: null + year_built: 1933 + surface: 357.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:22.953955+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3749 + fields: + parent_id: null + status: 1 + street_number: '125' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.448777 + lng: 26.116333 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1921 + surface: 328.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.142707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3750 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.442612 + lng: 26.112796 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1958 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.359063+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3751 + fields: + parent_id: null + status: 1 + street_number: 30 (corp A+B) + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.442444 + lng: 26.112844 + risk_category: RS2 + height_regime: S+P+2E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.484740+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3752 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.443889 + lng: 26.11364 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.594041+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3753 + fields: + parent_id: null + status: 1 + street_number: 48A + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.443417 + lng: 26.113432 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.728130+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3754 + fields: + parent_id: null + status: 1 + street_number: 56÷58 + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.444021 + lng: 26.11386 + risk_category: U2 + height_regime: S+P+2E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Silvia CARAMAN + observations: '' + has_warning_panels: null + year_built: 1922 + surface: 525.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:23.878369+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3755 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.44148 + lng: 26.112207 + risk_category: U2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 27 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2007 + certified_expert: Mihai URSĂCHESCU + observations: Încadrare în clasă de risc seismic în anul 2007 + has_warning_panels: null + year_built: 1942 + surface: 2224.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.031562+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3756 + fields: + parent_id: null + status: 1 + street_number: '89' + address: Strada TOAMNEI + county: București + locality: Sector 2 + lat: 44.44695 + lng: 26.115372 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1963 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.175618+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3757 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 30) + address: Strada TOHANI + county: București + locality: Sector 4 + lat: 44.413415 + lng: 26.108091 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.329551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3758 + fields: + parent_id: null + status: 1 + street_number: '65' + address: Strada TRAIAN VASILE + county: București + locality: Sector 1 + lat: 44.472148 + lng: 26.059313 + risk_category: RS2 + height_regime: S+Ds+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 611.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.491959+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3759 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada TRAIAN VASILE + county: București + locality: Sector 1 + lat: 44.472547 + lng: 26.059103 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 247.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.604214+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3760 + fields: + parent_id: null + status: 1 + street_number: '161' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.437256 + lng: 26.120915 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Anastasia NICOLESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.705046+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3761 + fields: + parent_id: null + status: 1 + street_number: '181' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441404 + lng: 26.120458 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.821131+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3762 + fields: + parent_id: null + status: 1 + street_number: '183' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441603 + lng: 26.120417 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:24.956564+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3763 + fields: + parent_id: null + status: 1 + street_number: '187' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441732 + lng: 26.120156 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.109350+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3764 + fields: + parent_id: null + status: 1 + street_number: '202' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.4387 + lng: 26.120402 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.272240+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3765 + fields: + parent_id: null + status: 1 + street_number: '206' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.439765 + lng: 26.120959 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Sofronie RAMIRO + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.459106+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3766 + fields: + parent_id: null + status: 1 + street_number: '218' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441195 + lng: 26.120628 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Alexandru PROGRESEANU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.625112+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3767 + fields: + parent_id: null + status: 1 + street_number: '222' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441443 + lng: 26.120577 + risk_category: RS2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1942 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.734756+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3768 + fields: + parent_id: null + status: 1 + street_number: '254' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.443369 + lng: 26.120021 + risk_category: RS3 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.855877+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3769 + fields: + parent_id: null + status: 1 + street_number: 54 (corp A) + address: Strada TRAIAN + county: București + locality: Sector 3 + lat: 44.428755 + lng: 26.119404 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:25.999875+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3770 + fields: + parent_id: null + status: 1 + street_number: '71' + address: Strada TRAIAN + county: București + locality: Sector 2 + lat: 44.441069 + lng: 26.147188 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.174631+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3771 + fields: + parent_id: null + status: 1 + street_number: 77÷79 + address: Strada TRAIAN + county: București + locality: Sector 3 + lat: 44.43144 + lng: 26.120291 + risk_category: U3 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 47 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1968 + surface: 4655.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.368542+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3772 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada TRANSILVANIEI + county: București + locality: Sector 1 + lat: 44.442493 + lng: 26.08501 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea MIRONESCU + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.542330+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3773 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada TRANSILVANIEI + county: București + locality: Sector 1 + lat: 44.442061 + lng: 26.083548 + risk_category: U3 + height_regime: S+P+4E+Pod + is_still_present: true + consolidation_status: 'NO' + apartment_count: 16 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 165.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.716475+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3774 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada TREI SCAUNE + county: București + locality: Sector 2 + lat: 44.459746 + lng: 26.133098 + risk_category: U2 + height_regime: S+P+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 120.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.836085+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3775 + fields: + parent_id: null + status: 1 + street_number: '27' + address: Strada TREI SCAUNE + county: București + locality: Sector 2 + lat: 44.459992 + lng: 26.13352 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1942 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:26.969235+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3776 + fields: + parent_id: null + status: 1 + street_number: 26 (17) + address: Strada TUDOR ARGHEZI (colț cu Strada BATISTE) + county: București + locality: Sector 2 + lat: 44.439003 + lng: 26.103686 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 76 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 797.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.117646+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3777 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.439502 + lng: 26.103223 + risk_category: RS3 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 25 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1946 + surface: 332.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.285187+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3778 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.437426 + lng: 26.104627 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.414933+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3779 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.437716 + lng: 26.104257 + risk_category: RS2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Rodica ANGELESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.562883+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3780 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.439966 + lng: 26.10279 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1951 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.742488+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3781 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.440132 + lng: 26.102633 + risk_category: RS3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:27.896873+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3782 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.440484 + lng: 26.102475 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ovidiu MANOIU + observations: '' + has_warning_panels: null + year_built: 1890 + surface: 557.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.003517+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3783 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.438437 + lng: 26.104008 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1922 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.126092+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3784 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.440907 + lng: 26.102305 + risk_category: RS1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1911 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.277244+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3785 + fields: + parent_id: null + status: 1 + street_number: '32' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.439106 + lng: 26.103653 + risk_category: U2 + height_regime: P+Mz+7+Ma; P+Mz+8+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 48 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1999 + certified_expert: Mircea NEICU. Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 375.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.459918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3786 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada TUDOR ARGHEZI + county: București + locality: Sector 2 + lat: 44.440933 + lng: 26.102425 + risk_category: U1 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Helmuth KOBER + observations: '' + has_warning_panels: null + year_built: 1924 + surface: 2612.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.604022+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3787 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada TUDOR VIANU + county: București + locality: Sector 1 + lat: 44.457967 + lng: 26.099232 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Victor NEDRITA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.741984+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3788 + fields: + parent_id: null + status: 1 + street_number: '45' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.450735 + lng: 26.106007 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:28.909805+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3789 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.44805 + lng: 26.107741 + risk_category: RS2 + height_regime: S+P+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PERJESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.055108+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3790 + fields: + parent_id: null + status: 1 + street_number: '73' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.451891 + lng: 26.105425 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.169769+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3791 + fields: + parent_id: null + status: 1 + street_number: '81' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.452465 + lng: 26.10515 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.311667+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3792 + fields: + parent_id: null + status: 1 + street_number: '83' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.45261 + lng: 26.10508 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.459950+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3793 + fields: + parent_id: null + status: 1 + street_number: '87' + address: Strada TUNARI + county: București + locality: Sector 2 + lat: 44.452903 + lng: 26.104941 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.590713+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3794 + fields: + parent_id: null + status: 1 + street_number: 11 (bloc A16) + address: Strada TURNU MAGURELE + county: București + locality: Sector 4 + lat: 44.375998 + lng: 26.117818 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.741589+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3795 + fields: + parent_id: null + status: 1 + street_number: 15 (bloc A17) + address: Strada TURNU MAGURELE + county: București + locality: Sector 4 + lat: 44.377502 + lng: 26.120811 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:29.936829+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3796 + fields: + parent_id: null + status: 1 + street_number: 23 (bloc A14) + address: Strada TURNU MAGURELE + county: București + locality: Sector 4 + lat: 44.379459 + lng: 26.126569 + risk_category: N/A + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1967 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.114707+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3797 + fields: + parent_id: null + status: 1 + street_number: 26÷26A + address: Strada TURTURELELOR + county: București + locality: Sector 3 + lat: 44.428731 + lng: 26.123915 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.220448+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3798 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada UIOARA (bloc M2) + county: București + locality: Sector 4 + lat: 44.3794612 + lng: 26.1030557 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mihaela POPESCU + observations: '' + has_warning_panels: null + year_built: 1973 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.354551+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3799 + fields: + parent_id: null + status: 1 + street_number: '52' + address: Strada UNITATII + county: București + locality: Sector 3 + lat: 44.421814 + lng: 26.131542 + risk_category: RS2 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.508949+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3800 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada VALERIU BRANIŞTE + county: București + locality: Sector 3 + lat: 44.429912 + lng: 26.123074 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 585.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.635548+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3801 + fields: + parent_id: null + status: 1 + street_number: 38 (corp B+C+D+E) + address: Strada VALERIU BRANISTE + county: București + locality: Sector 3 + lat: 44.429824 + lng: 26.123102 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.753914+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3802 + fields: + parent_id: null + status: 1 + street_number: 54÷56 (corp A) + address: Strada VALERIU BRANIŞTE + county: București + locality: Sector 3 + lat: 44.4300038 + lng: 26.1242638 + risk_category: U4 + height_regime: S+P+4E; S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 50 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1969 + surface: 3062.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:30.886441+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3803 + fields: + parent_id: null + status: 1 + street_number: 60A + address: Strada VALERIU BRANIŞTE + county: București + locality: Sector 3 + lat: 44.430226 + lng: 26.12519 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 990.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.074477+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3804 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada VANATORI + county: București + locality: Sector 5 + lat: 44.429253 + lng: 26.095017 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mihai NAVODARIU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.232787+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3805 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada VÂNATORI + county: București + locality: Sector 5 + lat: 44.429506 + lng: 26.092768 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Ioan NICULA + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 918.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.349538+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3806 + fields: + parent_id: null + status: 1 + street_number: 1A + address: Strada VÂNĂTORI + county: București + locality: Sector 5 + lat: 44.42917 + lng: 26.095019 + risk_category: U1 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Horia DUGAN + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1936 + surface: 1296.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.475263+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3807 + fields: + parent_id: null + status: 1 + street_number: 3÷3A + address: Strada VÂNĂTORI + county: București + locality: Sector 5 + lat: 44.429223 + lng: 26.094701 + risk_category: U1 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 19 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Mircea IEREMIA + observations: '' + has_warning_panels: null + year_built: 1891 + surface: 2378.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.594835+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3808 + fields: + parent_id: null + status: 1 + street_number: '23' + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.444578 + lng: 26.123696 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: null + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.705811+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3809 + fields: + parent_id: null + status: 1 + street_number: 24 (corp A+B+C+D) + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.4442946 + lng: 26.1226293 + risk_category: RS3 + height_regime: S+P; S+P+1E; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.843608+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3810 + fields: + parent_id: null + status: 1 + street_number: '28' + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.444467 + lng: 26.123565 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:31.999366+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3811 + fields: + parent_id: null + status: 1 + street_number: '30' + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.444494 + lng: 26.123742 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.167037+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3812 + fields: + parent_id: null + status: 1 + street_number: '38' + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.444662 + lng: 26.124338 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1913 + surface: 815.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.326550+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3813 + fields: + parent_id: null + status: 1 + street_number: '44' + address: Strada VASELOR + county: București + locality: Sector 2 + lat: 44.444827 + lng: 26.124893 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 54 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 8684.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.438902+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3814 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada Vasile Alecsandri + county: București + locality: Sector 1 + lat: 44.4504327 + lng: 26.0942459 + risk_category: U2 + height_regime: Sp+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2018 + certified_expert: Mihai Voiculescu + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.565388+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3815 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.440058 + lng: 26.101344 + risk_category: U2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 729.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.689571+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3816 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.440778 + lng: 26.101223 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1915 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.807902+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3817 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.440979 + lng: 26.101219 + risk_category: RS2 + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1950 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:32.923997+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3818 + fields: + parent_id: null + status: 1 + street_number: 3÷5 (corp A+B+C) + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.439449 + lng: 26.101396 + risk_category: U2 + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 99 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 6164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.084400+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3819 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.43945 + lng: 26.101525 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.258561+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3820 + fields: + parent_id: null + status: 1 + street_number: 7÷9 (corp D+E+F) + address: Strada VASILE CONTA + county: București + locality: Sector 2 + lat: 44.4397906 + lng: 26.1012474 + risk_category: U2 + height_regime: S+P+9…10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 99 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandrina PRETORIAN + observations: '' + has_warning_panels: null + year_built: 1941 + surface: 6164.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.420166+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3821 + fields: + parent_id: null + status: 1 + street_number: 11 (corp A+B+C) + address: Strada VASILE CRISTESCU + county: București + locality: Sector 2 + lat: 44.434055 + lng: 26.139469 + risk_category: RS1 + height_regime: S+P+2E+Ma; S+P; + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.540909+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3822 + fields: + parent_id: null + status: 1 + street_number: '20' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.437911 + lng: 26.107691 + risk_category: N/A + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Iorgu NICULA + observations: '' + has_warning_panels: null + year_built: 1893 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.651124+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3823 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.437963 + lng: 26.107581 + risk_category: N/A + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1902 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.764771+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3824 + fields: + parent_id: null + status: 1 + street_number: '55' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.441968 + lng: 26.109439 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1911 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.878027+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3825 + fields: + parent_id: null + status: 1 + street_number: '10' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.437139 + lng: 26.107345 + risk_category: U2 + height_regime: S+P+3E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 787.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:33.993129+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3826 + fields: + parent_id: null + status: 1 + street_number: '100' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.443875 + lng: 26.111139 + risk_category: U2 + height_regime: S+P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 22 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Horia DUGAN + observations: Încadrare în clasă de risc seismic în anul 2017 + has_warning_panels: null + year_built: 1938 + surface: 2144.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.132990+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3827 + fields: + parent_id: null + status: 1 + street_number: '111' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.445624 + lng: 26.11104 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 17 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1232.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.271669+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3828 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.437754 + lng: 26.107628 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 35 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emilian TITARU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 541.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.456515+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3829 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.438993 + lng: 26.107967 + risk_category: RS2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.592301+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3830 + fields: + parent_id: null + status: 1 + street_number: 23÷25 + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.439014 + lng: 26.107754 + risk_category: U2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 64 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: 621.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.698362+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3831 + fields: + parent_id: null + status: 1 + street_number: '24' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.438226 + lng: 26.107814 + risk_category: RS3 + height_regime: P+6E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.821869+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3832 + fields: + parent_id: null + status: 1 + street_number: 26÷28 + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.438684 + lng: 26.107994 + risk_category: U1 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 28 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea DABIJA; Paul VERNESCU + observations: '' + has_warning_panels: null + year_built: 1937 + surface: 38.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:34.966650+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3833 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.4406 + lng: 26.108253 + risk_category: U3 + height_regime: S+P+Mz+7E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1998 + certified_expert: Grigore ARSENIE + observations: '' + has_warning_panels: null + year_built: 1979 + surface: 2528.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.127577+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3834 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.440764 + lng: 26.108686 + risk_category: RS1 + height_regime: S+P+8E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PERJESCU + observations: '' + has_warning_panels: null + year_built: 1946 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.286398+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3835 + fields: + parent_id: null + status: 1 + street_number: '46' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.440599 + lng: 26.108738 + risk_category: U2 + height_regime: S+P+8E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2002 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1947 + surface: 1508.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.493416+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3836 + fields: + parent_id: null + status: 1 + street_number: 48÷50 + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.440628 + lng: 26.109115 + risk_category: RS2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriela POP + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.669482+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3837 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.436902 + lng: 26.107138 + risk_category: RS1 + height_regime: S+P+7E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 10 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PERJESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: 1267.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.774735+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3838 + fields: + parent_id: null + status: 1 + street_number: '68' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.441839 + lng: 26.109492 + risk_category: RS3 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:35.896221+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3839 + fields: + parent_id: null + status: 1 + street_number: 71 (corp B+C) + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.443163 + lng: 26.110155 + risk_category: RS3 + height_regime: S+P+3E; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.013336+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3840 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.443547 + lng: 26.110387 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan DUMITRESCU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.123462+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3841 + fields: + parent_id: null + status: 1 + street_number: '79' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.443676 + lng: 26.110464 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.243836+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3842 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada VASILE LASCĂR + county: București + locality: Sector 2 + lat: 44.436929 + lng: 26.1072909 + risk_category: U2 + height_regime: S+Ds+P+5E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Rodica VASILESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 32.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.390905+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3843 + fields: + parent_id: null + status: 1 + street_number: '80' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.442672 + lng: 26.110013 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Radu AGENT + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 904.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.539825+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3844 + fields: + parent_id: null + status: 1 + street_number: '81' + address: Strada VASILE LASCAR + county: București + locality: Sector 2 + lat: 44.443804 + lng: 26.110541 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.710753+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3845 + fields: + parent_id: null + status: 1 + street_number: '101' + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.43183 + lng: 26.122662 + risk_category: U2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 903.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.835024+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3846 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.431161 + lng: 26.1146 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 684.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:36.947178+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3847 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.431444 + lng: 26.116106 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 684.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.065352+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3848 + fields: + parent_id: null + status: 1 + street_number: 31÷33 + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.431538 + lng: 26.116476 + risk_category: RS2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Vasile GURAN + observations: '' + has_warning_panels: null + year_built: 1933 + surface: 1855.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.191202+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3849 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A) + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.43151 + lng: 26.11652 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: 1 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 170.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.326449+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3850 + fields: + parent_id: null + status: 1 + street_number: 4 (corp B+C) + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.430665 + lng: 26.113726 + risk_category: U2 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1900 + surface: 356.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.457956+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3851 + fields: + parent_id: null + status: 1 + street_number: '77' + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.43201 + lng: 26.120809 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.614836+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3852 + fields: + parent_id: null + status: 1 + street_number: '88' + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.431859 + lng: 26.121451 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1927 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.768004+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3853 + fields: + parent_id: null + status: 1 + street_number: 90 (corp A+B) + address: Strada VASILE LUCACIU + county: București + locality: Sector 3 + lat: 44.431843 + lng: 26.121615 + risk_category: U1 + height_regime: S+P+1; S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1152.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:37.899565+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3854 + fields: + parent_id: null + status: 1 + street_number: '14' + address: Strada VASILE PARVAN + county: București + locality: Sector 1 + lat: 44.436156 + lng: 26.083911 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Aurel COMANESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.007286+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3855 + fields: + parent_id: null + status: 1 + street_number: 2÷4 (corp B) + address: Strada VASILE PÂRVAN + county: București + locality: Sector 1 + lat: 44.4348459 + lng: 26.0844161 + risk_category: U1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1926 + surface: 304.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.130481+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3856 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada VASILE PĂUN + county: București + locality: Sector 5 + lat: 44.4340711 + lng: 26.0880075 + risk_category: C + height_regime: S+P+5E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Niculaie TUDOSE + observations: PVRTL nr.13/2003 + has_warning_panels: null + year_built: 1930 + surface: 1615.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.270455+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3857 + fields: + parent_id: null + status: 1 + street_number: '18' + address: Strada VASILE STROESCU + county: București + locality: Sector 2 + lat: 44.439961 + lng: 26.122681 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.427453+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3858 + fields: + parent_id: null + status: 1 + street_number: '6' + address: Strada VASILE STROESCU + county: București + locality: Sector 2 + lat: 44.440028 + lng: 26.12148 + risk_category: C + height_regime: Sparţial+P+3E+Pod + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: 4 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2017 + certified_expert: Constantin PAVEL + observations: AC nr.378/1332437/2015 PVRP din 18.09.2017 + has_warning_panels: null + year_built: 1938 + surface: 593.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.585725+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3859 + fields: + parent_id: null + status: 1 + street_number: '8' + address: Strada VASILE STROESCU + county: București + locality: Sector 2 + lat: 44.439987 + lng: 26.12167 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.754222+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3860 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada VASILE TONEANU + county: București + locality: Sector 3 + lat: 44.421413 + lng: 26.128429 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1933 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:38.923505+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3861 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada VERONICA MICLE + county: București + locality: Sector 1 + lat: 44.451199 + lng: 26.078943 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.045469+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3862 + fields: + parent_id: null + status: 1 + street_number: '35' + address: Strada VERZISORI + county: București + locality: Sector 4 + lat: 44.417595 + lng: 26.10945 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.153543+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3863 + fields: + parent_id: null + status: 1 + street_number: 46 (corp A+B+C) + address: Strada VERZISORI + county: București + locality: Sector 4 + lat: 44.417655 + lng: 26.109381 + risk_category: RS2 + height_regime: S+P; S+P+Ma; S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Cristian BALAN + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.287514+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3864 + fields: + parent_id: null + status: 1 + street_number: '54' + address: Strada VESPASIAN + county: București + locality: Sector 1 + lat: 44.446509 + lng: 26.071605 + risk_category: RS1 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea PERJESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.438201+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3865 + fields: + parent_id: null + status: 1 + street_number: 5 (bloc 7) + address: Strada VETERANILOR + county: București + locality: Sector 6 + lat: 44.435505 + lng: 26.029187 + risk_category: N/A + height_regime: S+P+9…10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin CIOVEIE + observations: '' + has_warning_panels: null + year_built: 1960 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.599724+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3866 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada VICTOR BABES + county: București + locality: Sector 5 + lat: 44.42934 + lng: 26.07142 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.824603+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3867 + fields: + parent_id: null + status: 1 + street_number: '7' + address: Strada VICTOR BABEŞ + county: București + locality: Sector 5 + lat: 44.429741 + lng: 26.071545 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 7 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Mihai URSACHESCU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 616.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:39.984867+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3868 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada VIESPARILOR + county: București + locality: Sector 2 + lat: 44.450819 + lng: 26.113997 + risk_category: C + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: YES_PUBLIC + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: AC nr.630/25V/2005 PVRTL nr.71637/2006 + has_warning_panels: null + year_built: 1935 + surface: 760.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.111880+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3869 + fields: + parent_id: null + status: 1 + street_number: '29' + address: Strada VIESPARILOR + county: București + locality: Sector 2 + lat: 44.450819 + lng: 26.113997 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan STANCIULESCU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.225267+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3870 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada VIIŞOAREI + county: București + locality: Sector 1 + lat: 44.449232 + lng: 26.093122 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 12 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Vladimir AMBROZIE + observations: '' + has_warning_panels: null + year_built: 1932 + surface: 1361.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.358379+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3871 + fields: + parent_id: null + status: 1 + street_number: 10÷12 + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.443828 + lng: 26.109408 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1925 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.495815+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3872 + fields: + parent_id: null + status: 1 + street_number: '107' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.447942 + lng: 26.114762 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Nicolae CONSTANTINESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 810.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.626127+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3873 + fields: + parent_id: null + status: 1 + street_number: '114' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.448184 + lng: 26.11524 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 817.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.759308+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3874 + fields: + parent_id: null + status: 1 + street_number: '116' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.448392 + lng: 26.115521 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: 217.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:40.911590+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3875 + fields: + parent_id: null + status: 1 + street_number: 117÷119 + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.44835 + lng: 26.115291 + risk_category: RS1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.074023+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3876 + fields: + parent_id: null + status: 1 + street_number: '138' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.449471 + lng: 26.116888 + risk_category: U1 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 6 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dragoş BADEA + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 669.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.203997+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3877 + fields: + parent_id: null + status: 1 + street_number: 157÷159 + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.449994 + lng: 26.117402 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Emil COROIU + observations: '' + has_warning_panels: null + year_built: 1938 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.311679+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3878 + fields: + parent_id: null + status: 1 + street_number: 26A + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.443778 + lng: 26.110865 + risk_category: RS3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.430135+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3879 + fields: + parent_id: null + status: 1 + street_number: '33' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.443904 + lng: 26.11177 + risk_category: RS1 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Leonid NEAGOE + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.549093+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3880 + fields: + parent_id: null + status: 1 + street_number: '70' + address: Strada VIITORULUI + county: București + locality: Sector 2 + lat: 44.446238 + lng: 26.112955 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1920 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.670793+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3881 + fields: + parent_id: null + status: 1 + street_number: '15' + address: Strada VISARION + county: București + locality: Sector 1 + lat: 44.448346 + lng: 26.095175 + risk_category: N/A + height_regime: S+P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Stelian PICULESCU + observations: '' + has_warning_panels: null + year_built: 1914 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.802555+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3882 + fields: + parent_id: null + status: 1 + street_number: '13' + address: Strada VISARION + county: București + locality: Sector 1 + lat: 44.448143 + lng: 26.095114 + risk_category: U3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2020 + certified_expert: Gheorghe VIȘAN + observations: Încadrare în clasă de risc seismic în anul 2020 + has_warning_panels: null + year_built: 1932 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:41.940242+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3883 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada VISARION + county: București + locality: Sector 1 + lat: 44.448713 + lng: 26.095041 + risk_category: RS3 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Eugeniu IORDACHESCU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.126628+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3884 + fields: + parent_id: null + status: 1 + street_number: '25' + address: Strada VISARION + county: București + locality: Sector 1 + lat: 44.449291 + lng: 26.094828 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Gabriel NICULESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.276483+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3885 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada VISARION + county: București + locality: Sector 1 + lat: 44.447078 + lng: 26.094604 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 9 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1928 + surface: 735.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.387349+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3886 + fields: + parent_id: null + status: 1 + street_number: 13 (corp A+B+C) + address: Strada VIŞINILOR + county: București + locality: Sector 2 + lat: 44.434725 + lng: 26.122454 + risk_category: U1 + height_regime: S+P+2;S+P+3+M + is_still_present: true + consolidation_status: 'NO' + apartment_count: 14 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Constantin ARIENESCU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: 1342.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.510432+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3887 + fields: + parent_id: null + status: 1 + street_number: 2A + address: Strada VISINILOR + county: București + locality: Sector 2 + lat: 44.434725 + lng: 26.121297 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.646478+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3888 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada VIŞINILOR + county: București + locality: Sector 2 + lat: 44.434794 + lng: 26.121503 + risk_category: U3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 3 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2012 + certified_expert: Adrian STĂNESCU + observations: Încadrare în clasă de risc seismic în anul 2012 + has_warning_panels: null + year_built: 1936 + surface: 196.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.792061+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3889 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada VISTIERILOR + county: București + locality: Sector 5 + lat: 44.417558 + lng: 26.081953 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Radu PETROVICI + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:42.936493+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3890 + fields: + parent_id: null + status: 1 + street_number: '16' + address: Strada VITEJESCU + county: București + locality: Sector 4 + lat: 44.417213 + lng: 26.108154 + risk_category: RS2 + height_regime: S+P; S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.121432+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3891 + fields: + parent_id: null + status: 1 + street_number: 9 (corp A) + address: Strada VITEJESCU + county: București + locality: Sector 4 + lat: 44.417369 + lng: 26.108203 + risk_category: RS1 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1941 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.318122+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3892 + fields: + parent_id: null + status: 1 + street_number: 9 (corp B) + address: Strada VITEJESCU + county: București + locality: Sector 5 + lat: 44.41738 + lng: 26.10821 + risk_category: U3 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1941 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.437970+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3893 + fields: + parent_id: null + status: 1 + street_number: 25 (corp A+B+C) + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.429072 + lng: 26.118215 + risk_category: U1 + height_regime: P+5E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 20 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1935 + surface: 261.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.563288+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3894 + fields: + parent_id: null + status: 1 + street_number: 38 (corp A) + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.4288057 + lng: 26.1191763 + risk_category: U3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2009 + certified_expert: Adina SIMION + observations: Încadrare în clasă de risc seismic în anul 2009 + has_warning_panels: null + year_built: 1900 + surface: 352.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.699828+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3895 + fields: + parent_id: null + status: 1 + street_number: 4 (corp A1+A2+B) + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.4287843 + lng: 26.1170925 + risk_category: RS2 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1910 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.837167+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3896 + fields: + parent_id: null + status: 1 + street_number: '48' + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.428719 + lng: 26.120637 + risk_category: U2 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1997 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: 121.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:43.955825+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3897 + fields: + parent_id: null + status: 1 + street_number: '51' + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.428809 + lng: 26.120647 + risk_category: RS2 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Anatolie CAZACLIU + observations: '' + has_warning_panels: null + year_built: 1936 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.093826+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3898 + fields: + parent_id: null + status: 1 + street_number: 55 (corp A+B) + address: Strada VULTURILOR + county: București + locality: Sector 3 + lat: 44.428872 + lng: 26.121081 + risk_category: RS3 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1890 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.254967+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3899 + fields: + parent_id: null + status: 1 + street_number: '17' + address: Strada WASHINGTON + county: București + locality: Sector 1 + lat: 44.455665 + lng: 26.092642 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 15 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Constantin TARHON + observations: '' + has_warning_panels: null + year_built: 1925 + surface: 1397.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.443243+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3900 + fields: + parent_id: null + status: 1 + street_number: '2' + address: Strada WASHINGTON + county: București + locality: Sector 1 + lat: 44.455368 + lng: 26.089949 + risk_category: U2 + height_regime: S+P+4E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 13 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1996 + certified_expert: Alexandru HRISTOFOROV + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 15.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.573072+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3901 + fields: + parent_id: null + status: 1 + street_number: '4' + address: Strada WASHINGTON + county: București + locality: Sector 1 + lat: 44.455388 + lng: 26.090233 + risk_category: U2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1995 + certified_expert: Armand NEFIAN + observations: '' + has_warning_panels: null + year_built: 1945 + surface: 672.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.696746+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3902 + fields: + parent_id: null + status: 1 + street_number: '5' + address: Strada WASHINGTON + county: București + locality: Sector 1 + lat: 44.455509 + lng: 26.090648 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.832762+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3903 + fields: + parent_id: null + status: 1 + street_number: '26' + address: Strada WITING + county: București + locality: Sector 1 + lat: 44.443442 + lng: 26.073012 + risk_category: RS2 + height_regime: S+P+2E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1934 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:44.965280+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3904 + fields: + parent_id: null + status: 1 + street_number: '42' + address: Strada WITING + county: București + locality: Sector 1 + lat: 44.443607 + lng: 26.072684 + risk_category: RS2 + height_regime: S+P+4E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Mircea NEICU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.121400+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3905 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada ZABLOVSCHI + county: București + locality: Sector 1 + lat: 44.460143 + lng: 26.072665 + risk_category: N/A + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan ANASTASIU + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.302753+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3906 + fields: + parent_id: null + status: 1 + street_number: 1 (bloc 33B) + address: Strada ZAMBILĂ IONIȚĂ + county: București + locality: Sector 2 + lat: 44.441693 + lng: 26.179527 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1974 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.505831+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3907 + fields: + parent_id: null + status: 1 + street_number: 3 (bloc 33) + address: Strada ZAMBILĂ IONIȚĂ + county: București + locality: Sector 2 + lat: 44.44289 + lng: 26.179279 + risk_category: RS2 + height_regime: S+P+10E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Stefan MIHAILESCU + observations: '' + has_warning_panels: null + year_built: 1975 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.657144+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3908 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada ZARII + county: București + locality: Sector 5 + lat: 44.437665 + lng: 26.06906 + risk_category: RS1 + height_regime: S+P+1E + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Corneliu NICUT + observations: '' + has_warning_panels: null + year_built: 1940 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.775892+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3909 + fields: + parent_id: null + status: 1 + street_number: '1' + address: Strada ZBORULUI + county: București + locality: Sector 3 + lat: 44.433625 + lng: 26.109964 + risk_category: U3 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 8 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 2013 + certified_expert: Gheorghe SÂRBU + observations: '' + has_warning_panels: null + year_built: 1930 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:45.902988+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3910 + fields: + parent_id: null + status: 1 + street_number: '12' + address: Strada ZECE MESE + county: București + locality: Sector 2 + lat: 44.44093 + lng: 26.118298 + risk_category: U1 + height_regime: S+P+3E + is_still_present: true + consolidation_status: 'NO' + apartment_count: 11 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Mircea CONDRUT + observations: '' + has_warning_panels: null + year_built: 1934 + surface: 997.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.031718+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3911 + fields: + parent_id: null + status: 1 + street_number: '21' + address: Strada ZECE MESE + county: București + locality: Sector 2 + lat: 44.440585 + lng: 26.120021 + risk_category: U1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: 5 + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Ion LUNGU + observations: '' + has_warning_panels: null + year_built: 1940 + surface: 617.0 + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.176918+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3912 + fields: + parent_id: null + status: 1 + street_number: 6A + address: Strada ZECE MESE + county: București + locality: Sector 2 + lat: 44.441101 + lng: 26.117644 + risk_category: RS1 + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Dan POPESCU + observations: '' + has_warning_panels: null + year_built: 1935 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.330527+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3913 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ZEFIRULUI + county: București + locality: Sector 2 + lat: 44.434655 + lng: 26.118937 + risk_category: N/A + height_regime: S+P+2E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1994 + certified_expert: Adina SIMION + observations: '' + has_warning_panels: null + year_built: 1939 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.509322+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3914 + fields: + parent_id: null + status: 1 + street_number: '11' + address: Strada ZEFIRULUI + county: București + locality: Sector 2 + lat: 44.434705 + lng: 26.120106 + risk_category: RS3 + height_regime: S+P+1E+Ma + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.657173+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3915 + fields: + parent_id: null + status: 1 + street_number: '19' + address: Strada ZEFIRULUI + county: București + locality: Sector 2 + lat: 44.434659 + lng: 26.120718 + risk_category: RS3 + height_regime: S+P + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1928 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.780179+00:00 + proximal_utilities: [] +- model: buildings.building + pk: 3916 + fields: + parent_id: null + status: 1 + street_number: '3' + address: Strada ZEFIRULUI + county: București + locality: Sector 2 + lat: 44.434655 + lng: 26.118937 + risk_category: RS3 + height_regime: '' + is_still_present: true + consolidation_status: 'NO' + apartment_count: null + permanently_occupied_apartment_count: null + residents_count: null + owners_count: null + public_apartment_count: null + public_owners: '' + rented_apartment_count: null + has_owners_association: null + apartments_with_6_months_debt: null + disconnected_utilities: '' + broken_utilities: '' + office_count: null + commercial_space_count: null + self_owned_commercial_space_count: null + proximal_utilities_description: '' + full_name: null + email_address: null + phone_number: null + type_of_contact: ContactChoice.NONE + necessary_support: null + registration_number: null + examination_year: 1993 + certified_expert: Niculaie TUDOSE + observations: '' + has_warning_panels: null + year_built: 1912 + surface: null + other_spaces_surface: null + cadastre_number: null + land_registry_number: '' + administration_update: null + admin_update: null + created_on: 2023-10-11 06:50:46.899634+00:00 + proximal_utilities: [] diff --git a/api/buildings/fixtures/datafiles.json b/api/buildings/fixtures/datafiles.json new file mode 100644 index 00000000..17cd4604 --- /dev/null +++ b/api/buildings/fixtures/datafiles.json @@ -0,0 +1,170 @@ +[ + { + "model": "buildings.datafile", + "fields": { + "name": "bucharest-nov-2021", + "file": "LISTA.imobile.PMB.completa_2018_XRZpK9w.xlsx", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "mehedinti-nov-2021", + "file": "expertiza-mehedinti_gE777De.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "braila-nov-2021", + "file": "expertiza-braila.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "bacau-nov-2021", + "file": "expertiza-bacau_9w0EYRB.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "botosani-nov-2021", + "file": "expertiza-botosani.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "brasov-nov-2021", + "file": "expertiza-brasov_GwVdP4f.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "buzau-nov-2021", + "file": "expertiza-buzau.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "calarasi-nov-2021", + "file": "expertiza-calarasi.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "caras-severin-nov-2021", + "file": "expertiza-caras-severin.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "constanta-nov-2021", + "file": "expertiza-constanta_CZeMBNu.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "covasna-nov-2021", + "file": "expertiza-covasna.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "dambovita-nov-2021", + "file": "expertiza-dambovita.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "galati-nov-2021", + "file": "expertiza-galati_JPneJ0r.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "ialomita-nov-2021", + "file": "expertiza-ialomita.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "iasi-nov-2021", + "file": "expertiza-iasi_XiDgfAn.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "olt-nov-2021", + "file": "expertiza-olt.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "prahova-nov-2021", + "file": "expertiza-prahova_1pOwlVI.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "teleorman-nov-2021", + "file": "expertiza-teleorman.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "tulcea-nov-2021", + "file": "expertiza-tulcea.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "valcea-nov-2021", + "file": "expertiza-valcea.csv", + "status": 0 + } + }, + { + "model": "buildings.datafile", + "fields": { + "name": "vrancea-nov-2021", + "file": "expertiza-vrancea_sZomedC.csv", + "status": 0 + } + } +] diff --git a/api/buildings/fixtures/proximal_utilities.yaml b/api/buildings/fixtures/proximal_utilities.yaml new file mode 100644 index 00000000..48ae6b3d --- /dev/null +++ b/api/buildings/fixtures/proximal_utilities.yaml @@ -0,0 +1,32 @@ +- model: buildings.buildingproximalutilities + pk: 1 + fields: + name_en: other residential buildings + name_ro: alte clădiri rezidențiale +- model: buildings.buildingproximalutilities + pk: 2 + fields: + name_en: buildings with commercial or cultural functions (eg restaurant, shop, + gallery, cinema, theater etc.) + name_ro: clădiri cu funcții comerciale sau culturale (eg. restaurant, magazin, + galerie, cinema, teatru ș.a.) +- model: buildings.buildingproximalutilities + pk: 3 + fields: + name_en: public utility buildings (eg. kindergarten, school, etc.) + name_ro: clădiri cu funcție publică (eg. grădiniță, școală ș.a.) +- model: buildings.buildingproximalutilities + pk: 4 + fields: + name_en: 'public space: park, parking lot, etc.' + name_ro: 'spațiu public: parc, parcare ș.a.' +- model: buildings.buildingproximalutilities + pk: 5 + fields: + name_en: the courtyard of the building + name_ro: curtea aferentă imobilului +- model: buildings.buildingproximalutilities + pk: 6 + fields: + name_en: unused land without buildings or outbuildings + name_ro: teren neutilizat fără construcții sau anexe diff --git a/api/buildings/fixtures/work_performed.yaml b/api/buildings/fixtures/work_performed.yaml new file mode 100644 index 00000000..df960ac0 --- /dev/null +++ b/api/buildings/fixtures/work_performed.yaml @@ -0,0 +1,30 @@ +- model: buildings.buildingworkperformed + pk: 1 + fields: + name_en: structure consolidation + name_ro: consolidare structură +- model: buildings.buildingworkperformed + pk: 2 + fields: + name_en: foundation consolidation + name_ro: consolidare fundație +- model: buildings.buildingworkperformed + pk: 3 + fields: + name_en: rehabilitation of common facilities + name_ro: reabilitare instalații comune +- model: buildings.buildingworkperformed + pk: 4 + fields: + name_en: thermal insulation + name_ro: izolare termică +- model: buildings.buildingworkperformed + pk: 5 + fields: + name_en: exterior plaster and roof/terrace repairs + name_ro: reparații tencuială exterioară și acoperiș/terasă +- model: buildings.buildingworkperformed + pk: 6 + fields: + name_en: others + name_ro: altele diff --git a/api/buildings/management/commands/buildings.py b/api/buildings/management/commands/create_buildings.py similarity index 99% rename from api/buildings/management/commands/buildings.py rename to api/buildings/management/commands/create_buildings.py index 8868ed9c..5a9ac5ad 100644 --- a/api/buildings/management/commands/buildings.py +++ b/api/buildings/management/commands/create_buildings.py @@ -9,7 +9,6 @@ class Command(BaseCommand): - help = "generate X number of Fake Buildings" def add_arguments(self, parser): @@ -33,6 +32,7 @@ def handle(self, *args, **options): ).delete() self.stdout.write(self.style.SUCCESS("Successfully deleted %s building(s)." % (int(buildings_count)))) elif options["create"]: + building_id: int = 0 for building_id in trange(int(options["total_buildings"])): address = fake.address() risk_category = random.choice(["NA", "U1", "U2", "U3", "U4", "RS1", "RS2", "RS3", "RS4"]) diff --git a/api/buildings/migrations/0011_auto_20211026_1156.py b/api/buildings/migrations/0011_auto_20211026_1156.py new file mode 100644 index 00000000..07df7bac --- /dev/null +++ b/api/buildings/migrations/0011_auto_20211026_1156.py @@ -0,0 +1,64 @@ +# Generated by Django 3.2.7 on 2021-10-26 08:56 + +import buildings.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0010_auto_20210925_1247'), + ] + + operations = [ + migrations.AddField( + model_name='building', + name='email_address', + field=models.EmailField(blank=True, max_length=254, null=True, verbose_name='email address'), + ), + migrations.AddField( + model_name='building', + name='full_name', + field=models.CharField(blank=True, max_length=75, null=True, verbose_name='full name'), + ), + migrations.AddField( + model_name='building', + name='has_warning_panels', + field=models.BooleanField(blank=True, default=None, null=True, verbose_name='has warning panels'), + ), + migrations.AddField( + model_name='building', + name='necessary_support', + field=models.CharField(blank=True, max_length=1000, null=True, verbose_name='support needed'), + ), + migrations.AddField( + model_name='building', + name='other_spaces_surface', + field=models.FloatField(blank=True, null=True, verbose_name='other surface'), + ), + migrations.AddField( + model_name='building', + name='phone_number', + field=models.CharField(blank=True, max_length=15, null=True, verbose_name='phone number'), + ), + migrations.AddField( + model_name='building', + name='type_of_contact', + field=models.CharField(choices=[('NONE', 'None'), ('OWNER', 'Owner'), ('TENANT', 'Tenant'), ('ADMIN', "Head of the owners' association")], db_index=True, default=buildings.models.ContactChoice['NONE'], max_length=20, verbose_name='status'), + ), + migrations.AlterField( + model_name='building', + name='surface', + field=models.FloatField(blank=True, null=True, verbose_name='residential surface'), + ), + migrations.AlterField( + model_name='building', + name='consolidation_status', + field=models.CharField(choices=[('NO', 'no'), ('YES_PRIVATE', 'yes, with private funding'), ('YES_PUBLIC', 'yes, with public funding'), ('DEMOLISHED', 'demolished')], db_index=True, default=buildings.models.ConsolidationChoice['NO'], max_length=32, verbose_name='is consolidated'), + ), + migrations.AlterField( + model_name='building', + name='risk_category', + field=models.CharField(choices=[('NA', 'N/A'), ('U1', 'U1'), ('U2', 'U2'), ('U3', 'U3'), ('U4', 'U4'), ('RS1', 'RS I'), ('RS2', 'RS II'), ('RS3', 'RS III'), ('RS4', 'RS IV'), ('C', 'Consolidated')], db_index=True, default=buildings.models.SeismicCategoryChoice['NA'], max_length=3, verbose_name='risk category'), + ), + ] diff --git a/api/buildings/migrations/0012_auto_20211103_1717.py b/api/buildings/migrations/0012_auto_20211103_1717.py new file mode 100644 index 00000000..a7817846 --- /dev/null +++ b/api/buildings/migrations/0012_auto_20211103_1717.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.7 on 2021-11-03 15:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0011_auto_20211026_1156'), + ] + + operations = [ + migrations.RenameModel(old_name='CsvFile', new_name='DataFile'), + migrations.AlterModelOptions( + name='datafile', + options={'verbose_name': 'Data file', 'verbose_name_plural': 'Data files'}, + ), + migrations.AlterField( + model_name='datafile', + name='name', + field=models.CharField(max_length=255, unique=True, verbose_name='name'), + ), + ] diff --git a/api/buildings/migrations/0013_imagefile.py b/api/buildings/migrations/0013_imagefile.py new file mode 100644 index 00000000..2203f3a9 --- /dev/null +++ b/api/buildings/migrations/0013_imagefile.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.7 on 2021-11-14 00:12 + +import buildings.models +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0012_auto_20211103_1717'), + ] + + operations = [ + migrations.CreateModel( + name='ImageFile', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('image', models.ImageField(default='Add image file', upload_to='images/', validators=[buildings.models.ImageFile.check_extension])), + ('status', models.SmallIntegerField(choices=[(0, 'Pending'), (1, 'Accepted'), (-1, 'Rejected')], db_index=True, default=0, verbose_name='status')), + ('building', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='buildings.building', validators=[buildings.models.ImageFile.check_image_limit])), + ], + ), + ] diff --git a/api/buildings/migrations/0014_alter_building_locality.py b/api/buildings/migrations/0014_alter_building_locality.py new file mode 100644 index 00000000..28f87b7b --- /dev/null +++ b/api/buildings/migrations/0014_alter_building_locality.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.7 on 2021-11-11 11:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0013_imagefile'), + ] + + operations = [ + migrations.AlterField( + model_name='building', + name='locality', + field=models.CharField(max_length=60, verbose_name='locality'), + ), + ] diff --git a/api/buildings/migrations/0015_alter_imagefile_building.py b/api/buildings/migrations/0015_alter_imagefile_building.py new file mode 100644 index 00000000..81fec2e1 --- /dev/null +++ b/api/buildings/migrations/0015_alter_imagefile_building.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.7 on 2021-11-23 19:12 + +import buildings.models +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0014_alter_building_locality'), + ] + + operations = [ + migrations.AlterField( + model_name='imagefile', + name='building', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='images', to='buildings.building', validators=[buildings.models.ImageFile.check_image_limit]), + ), + ] diff --git a/api/buildings/migrations/0016_remove_statistic_consolidated_buildings.py b/api/buildings/migrations/0016_remove_statistic_consolidated_buildings.py new file mode 100644 index 00000000..fc6a1649 --- /dev/null +++ b/api/buildings/migrations/0016_remove_statistic_consolidated_buildings.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.9 on 2021-11-29 12:44 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0015_alter_imagefile_building'), + ] + + operations = [ + migrations.RemoveField( + model_name='statistic', + name='consolidated_buildings', + ), + ] diff --git a/api/buildings/migrations/0017_auto_20220112_1135.py b/api/buildings/migrations/0017_auto_20220112_1135.py new file mode 100644 index 00000000..f0a5f864 --- /dev/null +++ b/api/buildings/migrations/0017_auto_20220112_1135.py @@ -0,0 +1,33 @@ +# Generated by Django 3.2.10 on 2022-01-12 09:35 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0016_remove_statistic_consolidated_buildings'), + ] + + operations = [ + migrations.RenameField( + model_name='buildingproximalutilities', + old_name='utility_name_en', + new_name='name_en', + ), + migrations.RenameField( + model_name='buildingproximalutilities', + old_name='utility_name_ro', + new_name='name_ro', + ), + migrations.RenameField( + model_name='buildingworkperformed', + old_name='work_name_en', + new_name='name_en', + ), + migrations.RenameField( + model_name='buildingworkperformed', + old_name='work_name_ro', + new_name='name_ro', + ), + ] diff --git a/api/buildings/migrations/0018_auto_20221014_1050.py b/api/buildings/migrations/0018_auto_20221014_1050.py new file mode 100644 index 00000000..983562fe --- /dev/null +++ b/api/buildings/migrations/0018_auto_20221014_1050.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.15 on 2022-10-14 07:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('buildings', '0017_auto_20220112_1135'), + ] + + operations = [ + migrations.AddField( + model_name='statistic', + name='consolidated_buildings', + field=models.IntegerField(null=True, verbose_name='consolidated buildings'), + ), + migrations.AddField( + model_name='statistic', + name='evaluated_buildings', + field=models.IntegerField(null=True, verbose_name='evaluated buildings'), + ), + ] diff --git a/api/buildings/migrations/0019_alter_buildingworkperformed_options_and_more.py b/api/buildings/migrations/0019_alter_buildingworkperformed_options_and_more.py new file mode 100644 index 00000000..32934f3c --- /dev/null +++ b/api/buildings/migrations/0019_alter_buildingworkperformed_options_and_more.py @@ -0,0 +1,56 @@ +# Generated by Django 4.2.1 on 2023-05-30 08:37 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + dependencies = [ + ("buildings", "0018_auto_20221014_1050"), + ] + + operations = [ + migrations.AlterModelOptions( + name="buildingworkperformed", + options={ + "verbose_name": "type of work performed", + "verbose_name_plural": "types of work performed", + }, + ), + migrations.AlterField( + model_name="buildingworkperformedevent", + name="work_performed", + field=models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="buildings.buildingworkperformed", + verbose_name="work performed", + ), + ), + migrations.AlterField( + model_name="statistic", + name="consolidated_buildings", + field=models.IntegerField( + help_text="All the buildings that have been consolidated (risk category is 'consolidated')", + null=True, + verbose_name="consolidated buildings", + ), + ), + migrations.AlterField( + model_name="statistic", + name="evaluated_buildings", + field=models.IntegerField( + help_text="All the approved buildings in the database", + null=True, + verbose_name="evaluated buildings", + ), + ), + migrations.AlterField( + model_name="statistic", + name="people_under_risk", + field=models.IntegerField( + help_text="The number of people (residents count) living in RS1 risk buildings", + null=True, + verbose_name="people under risk", + ), + ), + ] diff --git a/api/buildings/migrations/0020_statistic_buildings_per_city_and_more.py b/api/buildings/migrations/0020_statistic_buildings_per_city_and_more.py new file mode 100644 index 00000000..1956f31e --- /dev/null +++ b/api/buildings/migrations/0020_statistic_buildings_per_city_and_more.py @@ -0,0 +1,30 @@ +# Generated by Django 4.2.6 on 2023-10-10 11:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("buildings", "0019_alter_buildingworkperformed_options_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="statistic", + name="buildings_per_city", + field=models.JSONField( + help_text="The number of buildings per city", + null=True, + verbose_name="buildings per city", + ), + ), + migrations.AddField( + model_name="statistic", + name="buildings_per_county", + field=models.JSONField( + help_text="The number of buildings per county", + null=True, + verbose_name="buildings per county", + ), + ), + ] diff --git a/api/buildings/migrations/0021_statistic_buildings_per_category.py b/api/buildings/migrations/0021_statistic_buildings_per_category.py new file mode 100644 index 00000000..31684f5f --- /dev/null +++ b/api/buildings/migrations/0021_statistic_buildings_per_category.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.6 on 2023-10-11 07:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("buildings", "0020_statistic_buildings_per_city_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="statistic", + name="buildings_per_category", + field=models.JSONField( + help_text="The number of buildings per category", + null=True, + verbose_name="buildings per category", + ), + ), + ] diff --git a/api/buildings/models.py b/api/buildings/models.py index eb6dbc45..4b92e27e 100644 --- a/api/buildings/models.py +++ b/api/buildings/models.py @@ -1,17 +1,22 @@ +import math +import sys from enum import Enum +from io import BytesIO +from typing import Dict, List +import PIL.Image +from django.conf import settings +from django.core.exceptions import ValidationError +from django.core.files.uploadedfile import InMemoryUploadedFile from django.db import models +from django.db.models import Count, QuerySet from django.utils import timezone +from django.utils.safestring import mark_safe from django.utils.translation import get_language, gettext_lazy as _ +from seismic_site.caching import delete_from_cache -class SectorChoice(Enum): - s1 = _("Sector 1") - s2 = _("Sector 2") - s3 = _("Sector 3") - s4 = _("Sector 4") - s5 = _("Sector 5") - s6 = _("Sector 6") +BUILDINGS_LISTING_CACHE_KEY = "all_buildings_listing" class SeismicCategoryChoice(Enum): @@ -24,6 +29,29 @@ class SeismicCategoryChoice(Enum): RS2 = _("RS II") RS3 = _("RS III") RS4 = _("RS IV") + C = _("Consolidated") + + @classmethod + def choices(cls): + return [(i.name, i.value) for i in cls] + + +class ConsolidationChoice(Enum): + NO = _("no") + YES_PRIVATE = _("yes, with private funding") + YES_PUBLIC = _("yes, with public funding") + DEMOLISHED = _("demolished") + + @classmethod + def choices(cls): + return [(i.name, i.value) for i in cls] + + +class ContactChoice(Enum): + NONE = _("None") + OWNER = _("Owner") + TENANT = _("Tenant") + ADMIN = _("Head of the owners' association") @classmethod def choices(cls): @@ -31,36 +59,36 @@ def choices(cls): class BuildingWorkPerformed(models.Model): - work_name_en = models.CharField("work name", max_length=200, unique=True, blank=False, default="") - work_name_ro = models.CharField("denumire lucrare", max_length=200, unique=True, blank=False, default="") + name_en = models.CharField("work name", max_length=200, unique=True, blank=False, default="") + name_ro = models.CharField("denumire lucrare", max_length=200, unique=True, blank=False, default="") @property def work_name(self): current_language = get_language() if "ro" in current_language: - return self.work_name_ro + return self.name_ro else: - return self.work_name_en + return self.name_en def __str__(self): return self.work_name class Meta: - verbose_name = _("work performed") - verbose_name_plural = _("works performed") + verbose_name = _("type of work performed") + verbose_name_plural = _("types of work performed") class BuildingProximalUtilities(models.Model): - utility_name_en = models.CharField("utility name", max_length=200, unique=True, blank=False, default="") - utility_name_ro = models.CharField("denumire utilitate", max_length=200, unique=True, blank=False, default="") + name_en = models.CharField("utility name", max_length=200, unique=True, blank=False, default="") + name_ro = models.CharField("denumire utilitate", max_length=200, unique=True, blank=False, default="") @property def utility_name(self): current_language = get_language() if "ro" in current_language: - return self.utility_name_ro + return self.name_ro else: - return self.utility_name_en + return self.name_en def __str__(self): return self.utility_name @@ -70,6 +98,14 @@ class Meta: verbose_name_plural = _("proximal utilities") +class BuildingManager(models.Manager): + def bulk_create(self, *args, **kwargs): + super().bulk_create(self, *args, **kwargs) + + Statistic.update_statistics() + delete_from_cache(BUILDINGS_LISTING_CACHE_KEY) + + class ApprovedBuilding(models.Manager): def get_queryset(self): return super().get_queryset().filter(status=Building.ACCEPTED) @@ -79,20 +115,12 @@ class Building(models.Model): PENDING = 0 ACCEPTED = 1 REJECTED = -1 - BUILDING_STATUS_CHOICES = [ (PENDING, _("Pending")), (ACCEPTED, _("Accepted")), (REJECTED, _("Rejected")), ] - CONSOLIDATION_CHOICES = [ - (0, _("no")), - (1, _("yes, with private funding")), - (2, _("yes, with public funding")), - (-1, _("demolished")), - ] - general_id = models.AutoField(_("general id"), primary_key=True) parent_id = models.ForeignKey("self", models.SET_NULL, verbose_name=_("parent id"), blank=True, null=True) @@ -101,7 +129,7 @@ class Building(models.Model): street_number = models.CharField(_("street number"), max_length=100) address = models.CharField(_("address"), max_length=250, null=True) county = models.CharField(_("county"), max_length=60) - locality = models.CharField(_("locality"), max_length=20) + locality = models.CharField(_("locality"), max_length=60) lat = models.FloatField(_("latitude"), null=True) lng = models.FloatField(_("longitude"), null=True) @@ -116,7 +144,14 @@ class Building(models.Model): height_regime = models.CharField(_("height regime"), max_length=50, null=True) is_still_present = models.BooleanField(_("is standing"), default=True, null=True, blank=True) - consolidation_status = models.SmallIntegerField(_("is consolidated"), default=0, choices=CONSOLIDATION_CHOICES) + consolidation_status = models.CharField( + _("is consolidated"), + max_length=32, + choices=ConsolidationChoice.choices(), + default=ConsolidationChoice.NO, + db_index=True, + ) + work_performed = models.ManyToManyField( BuildingWorkPerformed, verbose_name=_("work performed"), @@ -153,13 +188,23 @@ class Building(models.Model): _("proximal utilities description"), null=False, default="", blank=True, max_length=200 ) + full_name = models.CharField(_("full name"), null=True, blank=True, max_length=75) + email_address = models.EmailField(_("email address"), null=True, blank=True) + phone_number = models.CharField(_("phone number"), null=True, blank=True, max_length=15) + type_of_contact = models.CharField( + _("status"), max_length=20, choices=ContactChoice.choices(), default=ContactChoice.NONE, db_index=True + ) + necessary_support = models.CharField(_("support needed"), null=True, blank=True, max_length=1000) + registration_number = models.IntegerField(_("registration number"), null=True, blank=True) examination_year = models.IntegerField(_("examination year"), null=True, blank=True) certified_expert = models.CharField(_("certified expert"), max_length=100, null=False, default="", blank=True) observations = models.CharField(_("observations"), max_length=1000, null=False, default="", blank=True) + has_warning_panels = models.BooleanField(_("has warning panels"), null=True, blank=True, default=None) year_built = models.IntegerField(_("year built"), null=True, blank=True) - surface = models.FloatField(_("surface"), null=True, blank=True) + surface = models.FloatField(_("residential surface"), null=True, blank=True) + other_spaces_surface = models.FloatField(_("other surface"), null=True, blank=True) cadastre_number = models.IntegerField(_("cadastre number"), null=True, blank=True) land_registry_number = models.CharField( @@ -170,9 +215,12 @@ class Building(models.Model): created_on = models.DateTimeField(_("created on"), default=timezone.now, blank=True) - objects = models.Manager() + objects = BuildingManager() approved = ApprovedBuilding() + def save(self, *args, **kwargs): + super(Building, self).save(*args, **kwargs) + class Meta: verbose_name = _("building") verbose_name_plural = _("buildings") @@ -183,7 +231,9 @@ def __str__(self): class BuildingWorkPerformedEvent(models.Model): building = models.ForeignKey(Building, on_delete=models.CASCADE) - work_performed = models.ForeignKey(BuildingWorkPerformed, on_delete=models.CASCADE) + work_performed = models.ForeignKey( + BuildingWorkPerformed, verbose_name=_("work performed"), on_delete=models.CASCADE + ) date_performed = models.DateField(_("date work performed"), blank=True) @@ -193,18 +243,140 @@ class Meta: class Statistic(models.Model): - people_under_risk = models.IntegerField(_("people under risk"), null=True) - consolidated_buildings = models.IntegerField(_("consolidated buildings"), null=True) + people_under_risk = models.IntegerField( + _("people under risk"), + help_text=_("The number of people (residents count) living in RS1 risk buildings"), + null=True, + ) + evaluated_buildings = models.IntegerField( + _("evaluated buildings"), + help_text=_("All the approved buildings in the database"), + null=True, + ) + consolidated_buildings = models.IntegerField( + _("consolidated buildings"), + help_text=_("All the buildings that have been consolidated (risk category is 'consolidated')"), + null=True, + ) + buildings_per_county = models.JSONField( + _("buildings per county"), + help_text=_("The number of buildings per county"), + null=True, + ) + buildings_per_city = models.JSONField( + _("buildings per city"), + help_text=_("The number of buildings per city"), + null=True, + ) + buildings_per_category = models.JSONField( + _("buildings per category"), + help_text=_("The number of buildings per category"), + null=True, + ) + + @classmethod + def get_statistic(cls): + if statistic := Statistic.objects.first(): + return statistic + + return cls.update_statistics() + + @classmethod + def update_statistics(cls): + people_under_risk: int = cls._get_people_under_risk() + evaluated_buildings: int = cls._get_evaluated_buildings() + consolidated_buildings: int = cls._get_consolidated_buildings() + buildings_per_county: dict = cls._get_buildings_per_county() + buildings_per_city: dict = cls._get_buildings_per_city() + buildings_per_category: dict = cls._get_buildings_per_category() + + statistic: List[Statistic] = Statistic.objects.update_or_create( + pk=1, + defaults={ + "people_under_risk": people_under_risk, + "evaluated_buildings": evaluated_buildings, + "consolidated_buildings": consolidated_buildings, + "buildings_per_county": buildings_per_county, + "buildings_per_city": buildings_per_city, + "buildings_per_category": buildings_per_category, + }, + ) + + statistic[0].save() + + return statistic[0] + + @staticmethod + def _get_people_under_risk() -> int: + people_under_risk: int = 0 + for building in Building.approved.filter(risk_category=SeismicCategoryChoice.RS1.name): + if building.residents_count: + people_under_risk += int(building.residents_count) + + # If there are no people under risk in the DB, return the default value + # This is done until we have proper values in the DB + if people_under_risk == 0: + return settings.DEFAULT_PEOPLE_UNDER_RISK + + return people_under_risk + + @staticmethod + def _get_evaluated_buildings() -> int: + total_buildings = Building.approved.count() + return int(total_buildings) + + @staticmethod + def _get_consolidated_buildings() -> int: + consolidated_buildings = Building.approved.filter(risk_category="C").count() + return int(consolidated_buildings) + + @staticmethod + def _get_buildings_per_county() -> dict: + building_counties: QuerySet[Dict] = ( + Building.approved.all().order_by("county").values("county").annotate(count=Count("county")) + ) + + buildings_per_county: Dict[str, int] = {building["county"]: building["count"] for building in building_counties} + return buildings_per_county class Meta: verbose_name = _("statistic") verbose_name_plural = _("statistics") + @staticmethod + def _get_buildings_per_city() -> dict: + building_cities: QuerySet[Dict] = ( + Building.approved.all().order_by("county").values("locality", "county").annotate(count=Count("locality")) + ) + + buildings_per_city: Dict[str, Dict[str, int]] = {} + for city in building_cities: + if city["county"] not in buildings_per_city: + buildings_per_city[city["county"]] = {} + + buildings_per_city[city["county"]][city["locality"]] = city["count"] + + return buildings_per_city + + @staticmethod + def _get_buildings_per_category() -> dict: + building_categories: QuerySet[Dict] = ( + Building.approved.all() + .order_by("risk_category") + .values("risk_category") + .annotate(count=Count("risk_category")) + ) + + buildings_per_category: Dict[str, int] = { + building["risk_category"]: building["count"] for building in building_categories + } + return buildings_per_category + def __str__(self): return "Statistics" -class CsvFile(models.Model): +class DataFile(models.Model): NOT_TRIED = 0 SUCCESS = 1 FAILURE = -1 @@ -215,13 +387,117 @@ class CsvFile(models.Model): (FAILURE, _("Import failed")), ] - name = models.CharField(_("name"), max_length=255) + name = models.CharField(_("name"), unique=True, max_length=255) file = models.FileField(_("file")) status = models.SmallIntegerField(_("status"), default=0, editable=False, choices=DATA_FILE_STATUS_CHOICES) class Meta: - verbose_name = _("CSV file") - verbose_name_plural = _("CSV files") + verbose_name = _("Data file") + verbose_name_plural = _("Data files") def __str__(self): return self.name + + +class ApprovedImage(models.Manager): + def get_queryset(self): + return super().get_queryset().filter(status=ImageFile.ACCEPTED) + + +class ImageFile(models.Model): + PENDING = 0 + ACCEPTED = 1 + REJECTED = -1 + + IMAGE_STATUS_CHOICES = [ + (PENDING, _("Pending")), + (ACCEPTED, _("Accepted")), + (REJECTED, _("Rejected")), + ] + + def check_extension(self): + name_parts = str(self.name).split(".") + if len(name_parts) < 2: + raise ValidationError(_("Image name does not contain an extension")) + if name_parts[-1].lower() not in settings.ACCEPTED_IMAGE_TYPES.keys(): + raise ValidationError( + _("Image extension is not accepted. Choose one of {}").format( + list(settings.ACCEPTED_IMAGE_TYPES.keys()) + ) + ) + + def check_image_limit(building): + if ImageFile.objects.filter(building=building).count() >= settings.ALLOWED_IMAGES_LIMIT: + raise ValidationError(_("Image limit for building is reached ({})").format(settings.ALLOWED_IMAGES_LIMIT)) + + def image_thumb(self): + return mark_safe(''.format(str(self.url))) + + def image_name(self): + return mark_safe(self.image.name) + + image_thumb.short_description = "Thumbnail" + + building = models.ForeignKey( + Building, validators=(check_image_limit,), on_delete=models.CASCADE, related_name="images" + ) + image = models.ImageField(default=_("Add image file"), upload_to="images/", validators=(check_extension,)) + status = models.SmallIntegerField(_("status"), default=PENDING, choices=IMAGE_STATUS_CHOICES, db_index=True) + + objects = models.Manager() + approved = ApprovedImage() + + def __str__(self): + return self.image.name + + @staticmethod + def image_resize_dimensions(im): + resize = settings.IMAGE_RESIZE + width, height = im.size + downscale = resize / max(height, width) + return math.ceil(width * downscale), math.ceil(height * downscale) + + def _handle_image(self): + # Opening the uploaded image + im = PIL.Image.open(self.image) + + output = BytesIO() + + # Resize the image based on relative dimensions to settings.IMAGE_RESIZE + im = im.resize(self.image_resize_dimensions(im)) + + # extract key from settings dictionary for accepted image types + extension = str(self.image.name).split(".")[-1].lower() + accepted_extension = settings.ACCEPTED_IMAGE_TYPES[extension] + + # after modifications, save it to the output + im.save( + output, + format=accepted_extension.upper(), + quality=settings.QUALITY_DEFINITIONS[accepted_extension.upper()], + ) + output.seek(0) + + # change the imagefield value to be the newly modified image value + self.image = InMemoryUploadedFile( + output, + "ImageField", + "{}.{}".format(self.image.name.split(".")[0], accepted_extension.lower()), + "image/{}".format(accepted_extension.lower()), + sys.getsizeof(output), + None, + ) + + def save(self, **kwargs): + # Check if image exists + previous = ImageFile.objects.get(pk=self.pk) if self.pk else None + + # If there is no previous image or image has changed apply handling logic + if not previous or previous.image != self.image: + self._handle_image() + + super(ImageFile, self).save() + + @property + def url(self): + return self.image.url diff --git a/api/buildings/serializers.py b/api/buildings/serializers.py index c014bbda..18edb71d 100644 --- a/api/buildings/serializers.py +++ b/api/buildings/serializers.py @@ -1,9 +1,26 @@ +from django.conf import settings from rest_framework import serializers -from .models import Building, Statistic +from .models import Building, BuildingProximalUtilities, BuildingWorkPerformed, Statistic -class BuildingSerializer(serializers.ModelSerializer): +class ImageUrlRelatedField(serializers.StringRelatedField): + def to_representation(self, value): + return value.url + + +class BaseBuildingSerializer(serializers.ModelSerializer): + county_code = serializers.SerializerMethodField("get_county_code") + + @staticmethod + def get_county_code(obj: Building) -> str: + county = obj.county + return settings.COUNTIES_SHORTNAME.get(county, county[0:2].upper()) + + +class BuildingSerializer(BaseBuildingSerializer): + images = ImageUrlRelatedField(many=True, read_only=True) + class Meta: model = Building fields = ( @@ -16,10 +33,11 @@ class Meta: "address", "street_number", "locality", - "county", + "county_code", "year_built", "height_regime", "status", + "images", ) @@ -36,6 +54,11 @@ class Meta: "lng", "risk_category", "height_regime", + "full_name", + "email_address", + "phone_number", + "type_of_contact", + "necessary_support", "is_still_present", "consolidation_status", "work_performed", @@ -55,6 +78,7 @@ class Meta: "self_owned_commercial_space_count", "proximal_utilities", "proximal_utilities_description", + "images", ) @@ -66,26 +90,35 @@ class Meta: class SearchQuerySerializer(serializers.Serializer): query = serializers.CharField(max_length=100) + riskCategory = serializers.CharField(required=False, default="") -class BuildingSearchSerializer(serializers.ModelSerializer): +class BuildingSearchSerializer(BaseBuildingSerializer): class Meta: model = Building - fields = ("general_id", "lat", "lng", "address", "street_number") + fields = ("general_id", "lat", "lng", "address", "street_number", "locality", "county_code") class StatisticSerializer(serializers.ModelSerializer): - evaluated_buildings = serializers.SerializerMethodField("get_total_buildings") - - @staticmethod - def get_total_buildings(_): - total_buildings = Building.approved.count() - return int(total_buildings) - class Meta: model = Statistic - fields = [ + fields = ( "people_under_risk", - "consolidated_buildings", "evaluated_buildings", - ] + "consolidated_buildings", + "buildings_per_county", + "buildings_per_city", + "buildings_per_category", + ) + + +class ProximalUtilitiesSerializer(serializers.ModelSerializer): + class Meta: + model = BuildingProximalUtilities + fields = "__all__" + + +class WorkPerformedSerializer(serializers.ModelSerializer): + class Meta: + model = BuildingWorkPerformed + fields = "__all__" diff --git a/api/buildings/signals.py b/api/buildings/signals.py new file mode 100644 index 00000000..1c4b9dc7 --- /dev/null +++ b/api/buildings/signals.py @@ -0,0 +1,21 @@ +from django.db.models.signals import post_save +from django.dispatch import receiver + +from seismic_site.caching import delete_from_cache +from .models import BUILDINGS_LISTING_CACHE_KEY, Building, Statistic + + +@receiver(post_save, sender=Building) +def refresh_cache(instance: Building, **kwargs): + if not isinstance(instance, Building): + return + + delete_from_cache(BUILDINGS_LISTING_CACHE_KEY) + + +@receiver(post_save, sender=Building) +def refresh_statistics(instance: Building, **kwargs): + if not isinstance(instance, Building): + return + + Statistic.update_statistics() diff --git a/api/buildings/static/css/admin/selector.css b/api/buildings/static/css/admin/selector.css new file mode 100644 index 00000000..04c4a401 --- /dev/null +++ b/api/buildings/static/css/admin/selector.css @@ -0,0 +1,3 @@ +.select2-container--default { + width: 100% !important; +} diff --git a/api/buildings/views.py b/api/buildings/views.py index ce061e0d..7064cf1c 100644 --- a/api/buildings/views.py +++ b/api/buildings/views.py @@ -1,25 +1,31 @@ -from django.contrib.postgres.search import TrigramSimilarity -from django.conf import settings -from drf_spectacular.utils import ( - extend_schema, - OpenApiParameter, -) +from typing import List -from rest_framework import status, viewsets -from rest_framework.decorators import api_view, permission_classes, action -from rest_framework import permissions +from django.conf import settings +from django.contrib.postgres.search import TrigramSimilarity +from drf_spectacular.utils import OpenApiParameter, extend_schema +from rest_framework import permissions, status, viewsets +from rest_framework.decorators import action, api_view, permission_classes from rest_framework.response import Response from rest_framework.throttling import AnonRateThrottle +from seismic_site.caching import get_from_cache, set_to_cache +from .models import ( + BUILDINGS_LISTING_CACHE_KEY, + Building, + BuildingProximalUtilities, + BuildingWorkPerformed, + Statistic, +) from .serializers import ( - BuildingSerializer, - PublicBuildingCreateSerializer, BuildingListSerializer, BuildingSearchSerializer, + BuildingSerializer, + ProximalUtilitiesSerializer, + PublicBuildingCreateSerializer, SearchQuerySerializer, StatisticSerializer, + WorkPerformedSerializer, ) -from .models import Building, Statistic class PublicCreateAnonRateThrottle(AnonRateThrottle): @@ -36,6 +42,29 @@ class BuildingViewSet(viewsets.ModelViewSet): def get_queryset(self): return Building.approved.all().order_by("general_id") + def list(self, request, *args, **kwargs): + """ + List all buildings + """ + nonexistent = object() # sentinel + + cached_data: List = get_from_cache(BUILDINGS_LISTING_CACHE_KEY, nonexistent) + + if cached_data is nonexistent: + queryset = self.filter_queryset(self.get_queryset()) + + page = self.paginate_queryset(queryset) + if page is not None: + serializer = self.get_serializer(page, many=True) + return self.get_paginated_response(serializer.data) + + serializer = self.get_serializer(queryset, many=True) + cached_data = serializer.data + + set_to_cache(BUILDINGS_LISTING_CACHE_KEY, cached_data) + + return Response(cached_data) + def get_serializer_class(self): if self.action == "list": return BuildingListSerializer @@ -89,9 +118,13 @@ def search(self, request): if serializer.is_valid(): query = serializer.data["query"] + search_category = ("", serializer.data["riskCategory"])[bool(serializer.data["riskCategory"])] buildings = ( Building.approved.annotate(similarity=TrigramSimilarity("address", query)) - .filter(similarity__gt=settings.TRIGRAM_SIMILARITY_THRESHOLD) + .filter( + similarity__gt=settings.TRIGRAM_SIMILARITY_THRESHOLD, + risk_category__icontains=search_category, + ) .order_by("-similarity") ) else: @@ -101,10 +134,21 @@ def search(self, request): return Response(result_serializer.data) +class ProximalUtilitiesViewSet(viewsets.ReadOnlyModelViewSet): + queryset = BuildingProximalUtilities.objects.all() + serializer_class = ProximalUtilitiesSerializer + + +class WorkPerformedViewSet(viewsets.ReadOnlyModelViewSet): + queryset = BuildingWorkPerformed.objects.all() + serializer_class = WorkPerformedSerializer + + +@extend_schema(request=StatisticSerializer, responses=None) # TODO: is it really None? @api_view(["GET"]) @permission_classes((permissions.AllowAny,)) -def statistics(self): - stats = Statistic.objects.first() +def statistics(request): + stats = Statistic.get_statistic() serializer = StatisticSerializer(stats, many=False) return Response(serializer.data) diff --git a/api/locale/en/LC_MESSAGES/django.po b/api/locale/en/LC_MESSAGES/django.po index 917cc987..cbbf3db6 100644 --- a/api/locale/en/LC_MESSAGES/django.po +++ b/api/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 12:50+0300\n" +"POT-Creation-Date: 2023-05-30 12:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,129 +17,110 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: blog/apps.py:7 -msgid "Blog" +#: buildings/admin.py:55 +msgid "Mark selected images as pending" msgstr "" -#: blog/models.py:9 blog/models.py:30 -msgid "post" +#: buildings/admin.py:60 +msgid "Mark selected images as accepted" msgstr "" -#: blog/models.py:10 pages/models.py:28 -msgid "title" +#: buildings/admin.py:65 +msgid "Mark selected images as rejected" msgstr "" -#: blog/models.py:11 pages/models.py:30 -msgid "slug" -msgstr "" - -#: blog/models.py:12 -msgid "image" -msgstr "" - -#: blog/models.py:13 -msgid "preview text" -msgstr "" - -#: blog/models.py:14 -msgid "text" -msgstr "" - -#: blog/models.py:15 -msgid "tags" -msgstr "" - -#: blog/models.py:16 -msgid "is visible" -msgstr "" - -#: blog/models.py:17 -msgid "published" -msgstr "" - -#: blog/models.py:18 -msgid "created" -msgstr "" - -#: blog/models.py:19 -msgid "updated" -msgstr "" - -#: blog/models.py:31 -msgid "posts" -msgstr "" +#: buildings/admin.py:83 +#, python-brace-format +msgid "{updated} image was successfully marked as {status}." +msgid_plural "{updated} images were successfully marked as {status}." +msgstr[0] "" +msgstr[1] "" -#: buildings/admin.py:52 +#: buildings/admin.py:115 msgid "Operational Data" msgstr "" -#: buildings/admin.py:53 +#: buildings/admin.py:116 msgid "Seismic Data" msgstr "" -#: buildings/admin.py:54 +#: buildings/admin.py:117 msgid "Geo Data" msgstr "" -#: buildings/admin.py:56 +#: buildings/admin.py:119 msgid "General Data" msgstr "" -#: buildings/admin.py:72 +#: buildings/admin.py:135 msgid "Building Functioning" msgstr "" -#: buildings/admin.py:83 +#: buildings/admin.py:146 msgid "Structure and Occupancy Type" msgstr "" -#: buildings/admin.py:95 +#: buildings/admin.py:158 msgid "Other info" msgstr "" -#: buildings/admin.py:118 +#: buildings/admin.py:179 +msgid "Address" +msgstr "" + +#: buildings/admin.py:185 +msgid "Images" +msgstr "" + +#: buildings/admin.py:197 +msgid "No associated images" +msgstr "" + +#: buildings/admin.py:202 msgid "Mark selected buildings as pending" msgstr "" -#: buildings/admin.py:123 +#: buildings/admin.py:207 msgid "Mark selected buildings as accepted" msgstr "" -#: buildings/admin.py:128 +#: buildings/admin.py:212 msgid "Mark selected buildings as rejected" msgstr "" -#: buildings/admin.py:135 +#: buildings/admin.py:219 #, python-brace-format msgid "{updated} building was successfully marked as {status}." msgid_plural "{updated} buildings were successfully marked as {status}." msgstr[0] "" msgstr[1] "" -#: buildings/admin.py:210 +#: buildings/admin.py:294 msgid "building resource" msgstr "" -#: buildings/admin.py:211 +#: buildings/admin.py:295 msgid "building resources" msgstr "" -#: buildings/admin.py:239 +#: buildings/admin.py:320 #, python-brace-format msgid "File with name '{file_name}' wasn't imported. Errors: {row_errors}" msgstr "" -#: buildings/admin.py:246 +#: buildings/admin.py:327 #, python-brace-format msgid "File with name '{file_name}' was imported." msgstr "" -#: buildings/admin.py:252 +#: buildings/admin.py:334 #, python-brace-format -msgid "File with name '{file_name}' wasn't an XLSX." +msgid "" +"File with name '{file_name}' wasn't a proper data file. Accepted formats " +"are: CSV, XLSX." msgstr "" -#: buildings/admin.py:258 +#: buildings/admin.py:343 #, python-brace-format msgid "" "File with name '{file_name}' couldn't be imported. The error received was: " @@ -150,30 +131,6 @@ msgstr "" msgid "Buildings" msgstr "" -#: buildings/models.py:9 -msgid "Sector 1" -msgstr "" - -#: buildings/models.py:10 -msgid "Sector 2" -msgstr "" - -#: buildings/models.py:11 -msgid "Sector 3" -msgstr "" - -#: buildings/models.py:12 -msgid "Sector 4" -msgstr "" - -#: buildings/models.py:13 -msgid "Sector 5" -msgstr "" - -#: buildings/models.py:14 -msgid "Sector 6" -msgstr "" - #: buildings/models.py:18 msgid "N/A" msgstr "" @@ -210,362 +167,361 @@ msgstr "" msgid "RS IV" msgstr "" -#: buildings/models.py:49 buildings/models.py:122 -msgid "work performed" +#: buildings/models.py:27 +msgid "Consolidated" msgstr "" -#: buildings/models.py:50 -msgid "works performed" +#: buildings/models.py:35 +msgid "no" msgstr "" -#: buildings/models.py:69 -msgid "proximal utility" +#: buildings/models.py:36 +msgid "yes, with private funding" msgstr "" -#: buildings/models.py:70 buildings/models.py:150 -msgid "proximal utilities" +#: buildings/models.py:37 +msgid "yes, with public funding" msgstr "" -#: buildings/models.py:84 -msgid "Pending" +#: buildings/models.py:38 +msgid "demolished" msgstr "" -#: buildings/models.py:85 -msgid "Accepted" +#: buildings/models.py:46 +msgid "None" msgstr "" -#: buildings/models.py:86 -msgid "Rejected" +#: buildings/models.py:47 +msgid "Owner" msgstr "" -#: buildings/models.py:90 -msgid "no" +#: buildings/models.py:48 +msgid "Tenant" msgstr "" -#: buildings/models.py:91 -msgid "yes, with private funding" +#: buildings/models.py:49 +msgid "Head of the owners' association" +msgstr "" + +#: buildings/models.py:72 +msgid "type of work performed" +msgstr "" + +#: buildings/models.py:73 +msgid "types of work performed" msgstr "" #: buildings/models.py:92 -msgid "yes, with public funding" +msgid "proximal utility" msgstr "" -#: buildings/models.py:93 -msgid "demolished" +#: buildings/models.py:93 buildings/models.py:172 +msgid "proximal utilities" +msgstr "" + +#: buildings/models.py:106 buildings/models.py:342 +msgid "Pending" +msgstr "" + +#: buildings/models.py:107 buildings/models.py:343 +msgid "Accepted" msgstr "" -#: buildings/models.py:96 +#: buildings/models.py:108 buildings/models.py:344 +msgid "Rejected" +msgstr "" + +#: buildings/models.py:111 msgid "general id" msgstr "" -#: buildings/models.py:97 +#: buildings/models.py:112 msgid "parent id" msgstr "original building" -#: buildings/models.py:99 buildings/models.py:220 +#: buildings/models.py:114 buildings/models.py:182 buildings/models.py:321 +#: buildings/models.py:374 msgid "status" msgstr "" -#: buildings/models.py:101 +#: buildings/models.py:116 msgid "street number" msgstr "" -#: buildings/models.py:102 +#: buildings/models.py:117 msgid "address" msgstr "" -#: buildings/models.py:103 +#: buildings/models.py:118 msgid "county" msgstr "" -#: buildings/models.py:104 +#: buildings/models.py:119 msgid "locality" msgstr "" -#: buildings/models.py:106 +#: buildings/models.py:121 msgid "latitude" msgstr "" -#: buildings/models.py:107 +#: buildings/models.py:122 msgid "longitude" msgstr "" -#: buildings/models.py:110 +#: buildings/models.py:125 msgid "risk category" msgstr "" -#: buildings/models.py:116 +#: buildings/models.py:131 msgid "height regime" msgstr "" -#: buildings/models.py:118 +#: buildings/models.py:133 msgid "is standing" msgstr "" -#: buildings/models.py:119 +#: buildings/models.py:135 msgid "is consolidated" msgstr "" -#: buildings/models.py:127 +#: buildings/models.py:144 buildings/models.py:223 +msgid "work performed" +msgstr "" + +#: buildings/models.py:149 msgid "apartment count" msgstr "" -#: buildings/models.py:129 +#: buildings/models.py:151 msgid "permanently inhabited apartment count" msgstr "" -#: buildings/models.py:131 +#: buildings/models.py:153 msgid "resident count" msgstr "" -#: buildings/models.py:132 +#: buildings/models.py:154 msgid "owner count" msgstr "" -#: buildings/models.py:133 +#: buildings/models.py:155 msgid "public apartment count" msgstr "" -#: buildings/models.py:134 +#: buildings/models.py:156 msgid "public owners" msgstr "state owned apartments" -#: buildings/models.py:135 +#: buildings/models.py:157 msgid "rented apartment count" msgstr "" -#: buildings/models.py:137 +#: buildings/models.py:159 msgid "has owners association" msgstr "" -#: buildings/models.py:138 +#: buildings/models.py:160 msgid "6 month debt apartment count" msgstr "number of apartments with utilities debts longer than 6 months" -#: buildings/models.py:140 +#: buildings/models.py:162 msgid "disconnected utilities" msgstr "building disconnected from public utilities" -#: buildings/models.py:142 +#: buildings/models.py:164 msgid "broken utilities" msgstr "building has broken public utilities" -#: buildings/models.py:144 +#: buildings/models.py:166 msgid "office count" msgstr "" -#: buildings/models.py:145 +#: buildings/models.py:167 msgid "commercial space count" msgstr "" -#: buildings/models.py:147 +#: buildings/models.py:169 msgid "self-owned commercial space count" msgstr "commercial space owned by the company using it" -#: buildings/models.py:153 +#: buildings/models.py:175 msgid "proximal utilities description" msgstr "comments on the proximal utilities" -#: buildings/models.py:156 +#: buildings/models.py:178 +msgid "full name" +msgstr "" + +#: buildings/models.py:179 +msgid "email address" +msgstr "" + +#: buildings/models.py:180 +msgid "phone number" +msgstr "" + +#: buildings/models.py:184 +msgid "support needed" +msgstr "" + +#: buildings/models.py:186 msgid "registration number" msgstr "" -#: buildings/models.py:157 +#: buildings/models.py:187 msgid "examination year" msgstr "" -#: buildings/models.py:158 +#: buildings/models.py:188 msgid "certified expert" msgstr "" -#: buildings/models.py:159 +#: buildings/models.py:189 msgid "observations" msgstr "" -#: buildings/models.py:161 +#: buildings/models.py:190 +msgid "has warning panels" +msgstr "" + +#: buildings/models.py:192 msgid "year built" msgstr "" -#: buildings/models.py:162 -msgid "surface" +#: buildings/models.py:193 +msgid "residential surface" msgstr "" -#: buildings/models.py:164 +#: buildings/models.py:194 +msgid "other surface" +msgstr "" + +#: buildings/models.py:196 msgid "cadastre number" msgstr "" -#: buildings/models.py:166 +#: buildings/models.py:198 msgid "land registry number" msgstr "" -#: buildings/models.py:168 +#: buildings/models.py:200 msgid "administration update" msgstr "" -#: buildings/models.py:169 +#: buildings/models.py:201 msgid "admin update" msgstr "" -#: buildings/models.py:171 +#: buildings/models.py:203 msgid "created on" msgstr "" -#: buildings/models.py:177 +#: buildings/models.py:213 msgid "building" msgstr "" -#: buildings/models.py:178 +#: buildings/models.py:214 msgid "buildings" msgstr "" -#: buildings/models.py:188 +#: buildings/models.py:226 msgid "date work performed" msgstr "" -#: buildings/models.py:191 +#: buildings/models.py:229 msgid "work performed event" msgstr "" -#: buildings/models.py:192 +#: buildings/models.py:230 msgid "work performed events" msgstr "" -#: buildings/models.py:196 +#: buildings/models.py:235 msgid "people under risk" msgstr "" -#: buildings/models.py:197 -msgid "consolidated buildings" +#: buildings/models.py:236 +msgid "The number of people (residents count) living in RS1 risk buildings" msgstr "" -#: buildings/models.py:200 -msgid "statistic" +#: buildings/models.py:240 +msgid "evaluated buildings" msgstr "" -#: buildings/models.py:201 -msgid "statistics" +#: buildings/models.py:241 +msgid "All the approved buildings in the database" msgstr "" -#: buildings/models.py:213 -msgid "Not tried" -msgstr "" - -#: buildings/models.py:214 -msgid "Imported successfully" -msgstr "" - -#: buildings/models.py:215 -msgid "Import failed" -msgstr "" - -#: buildings/models.py:218 pages/models.py:9 pages/models.py:95 -msgid "name" -msgstr "" - -#: buildings/models.py:219 -msgid "file" -msgstr "" - -#: buildings/models.py:223 -msgid "CSV file" -msgstr "" - -#: buildings/models.py:224 -msgid "CSV files" -msgstr "" - -#: pages/apps.py:7 -msgid "Pages" -msgstr "" - -#: pages/models.py:15 pages/models.py:26 -msgid "category" -msgstr "" - -#: pages/models.py:16 -msgid "categories" -msgstr "" - -#: pages/models.py:25 -msgid "Page category" -msgstr "" - -#: pages/models.py:28 -msgid "Page title" -msgstr "" - -#: pages/models.py:35 -msgid "Unique URL slug (leave empty to auto-generate)" -msgstr "" - -#: pages/models.py:37 -msgid "content" +#: buildings/models.py:245 +msgid "consolidated buildings" msgstr "" -#: pages/models.py:39 -msgid "updated on" +#: buildings/models.py:246 +msgid "" +"All the buildings that have been consolidated (risk category is " +"'consolidated')" msgstr "" -#: pages/models.py:44 -msgid "Last update time" +#: buildings/models.py:301 +msgid "statistic" msgstr "" -#: pages/models.py:47 -msgid "publishing date" +#: buildings/models.py:302 +msgid "statistics" msgstr "" -#: pages/models.py:50 -msgid "Public page publishing date" +#: buildings/models.py:314 +msgid "Not tried" msgstr "" -#: pages/models.py:53 -msgid "is published" +#: buildings/models.py:315 +msgid "Imported successfully" msgstr "" -#: pages/models.py:56 -msgid "Is this page visible on the website" +#: buildings/models.py:316 +msgid "Import failed" msgstr "" -#: pages/models.py:60 -msgid "page" +#: buildings/models.py:319 +msgid "name" msgstr "" -#: pages/models.py:61 -msgid "pages" +#: buildings/models.py:320 +msgid "file" msgstr "" -#: pages/models.py:92 -msgid "Page attachment" +#: buildings/models.py:324 +msgid "Data file" msgstr "" -#: pages/models.py:93 pages/models.py:104 -msgid "attachment" +#: buildings/models.py:325 +msgid "Data files" msgstr "" -#: pages/models.py:95 -msgid "Attachment name" +#: buildings/models.py:350 +msgid "Image name does not contain an extension" msgstr "" -#: pages/models.py:97 -msgid "upload date" +#: buildings/models.py:353 +msgid "Image extension is not accepted. Choose one of {}" msgstr "" -#: pages/models.py:99 -msgid "Attachment upload date" +#: buildings/models.py:360 +msgid "Image limit for building is reached ({})" msgstr "" -#: pages/models.py:101 -msgid "uploaded file" +#: buildings/models.py:373 +msgid "Add image file" msgstr "" -#: pages/models.py:105 -msgid "attachments" +#: seismic_site/settings/base.py:143 +msgid "Romanian" msgstr "" -#: seismic_site/settings.py:122 +#: seismic_site/settings/base.py:144 msgid "English" msgstr "" -#: seismic_site/settings.py:122 -msgid "Romanian" +#: seismic_site/settings/base.py:288 seismic_site/settings/base.py:290 +msgid "Acasă în Siguranță" msgstr "" diff --git a/api/locale/ro/LC_MESSAGES/django.po b/api/locale/ro/LC_MESSAGES/django.po index 85a98ec9..b51eba9e 100644 --- a/api/locale/ro/LC_MESSAGES/django.po +++ b/api/locale/ro/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 12:50+0300\n" +"POT-Creation-Date: 2023-05-30 12:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,99 +18,79 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1));\n" -#: blog/apps.py:7 -msgid "Blog" -msgstr "Jurnal" +#: buildings/admin.py:55 +msgid "Mark selected images as pending" +msgstr "Marchează imaginile selectate ca în așteptare" -#: blog/models.py:9 blog/models.py:30 -msgid "post" -msgstr "articol" +#: buildings/admin.py:60 +msgid "Mark selected images as accepted" +msgstr "Marchează imaginile selectate ca acceptate" -#: blog/models.py:10 pages/models.py:28 -msgid "title" -msgstr "titlu" +#: buildings/admin.py:65 +msgid "Mark selected images as rejected" +msgstr "Marchează imaginile selectate ca respinse" -#: blog/models.py:11 pages/models.py:30 -msgid "slug" -msgstr "adresă" - -#: blog/models.py:12 -msgid "image" -msgstr "imagine" - -#: blog/models.py:13 -msgid "preview text" -msgstr "text previzualizare" - -#: blog/models.py:14 -msgid "text" -msgstr "text" - -#: blog/models.py:15 -msgid "tags" -msgstr "cuvinte cheie" - -#: blog/models.py:16 -msgid "is visible" -msgstr "este vizibil" - -#: blog/models.py:17 -msgid "published" -msgstr "publicat" - -#: blog/models.py:18 -msgid "created" -msgstr "creat" - -#: blog/models.py:19 -msgid "updated" -msgstr "actualizat" - -#: blog/models.py:31 -msgid "posts" -msgstr "articole" +#: buildings/admin.py:83 +#, python-brace-format +msgid "{updated} image was successfully marked as {status}." +msgid_plural "{updated} images were successfully marked as {status}." +msgstr[0] "{updated} imagine a fost marcată ca {status}" +msgstr[1] "{updated} imagini au fost marcate ca {status}" +msgstr[2] "{updated} de imagini au fost marcate ca {status}" -#: buildings/admin.py:52 +#: buildings/admin.py:115 msgid "Operational Data" msgstr "Date operaționale" -#: buildings/admin.py:53 +#: buildings/admin.py:116 msgid "Seismic Data" msgstr "Date seismice" -#: buildings/admin.py:54 +#: buildings/admin.py:117 msgid "Geo Data" msgstr "Date geografice" -#: buildings/admin.py:56 +#: buildings/admin.py:119 msgid "General Data" msgstr "Date generale" -#: buildings/admin.py:72 +#: buildings/admin.py:135 msgid "Building Functioning" msgstr "Funcționarea imobilului" -#: buildings/admin.py:83 +#: buildings/admin.py:146 msgid "Structure and Occupancy Type" msgstr "Structura și tipul ocupării clădirii" -#: buildings/admin.py:95 +#: buildings/admin.py:158 msgid "Other info" msgstr "Alte informații" -#: buildings/admin.py:118 +#: buildings/admin.py:179 +msgid "Address" +msgstr "Adresă" + +#: buildings/admin.py:185 +msgid "Images" +msgstr "Imagini" + +#: buildings/admin.py:197 +msgid "No associated images" +msgstr "Nicio imagine asociată" + +#: buildings/admin.py:202 msgid "Mark selected buildings as pending" msgstr "Marchează clădirile selectate ca în așteptare" -#: buildings/admin.py:123 +#: buildings/admin.py:207 msgid "Mark selected buildings as accepted" msgstr "Marchează clădirile selectate ca acceptate" -#: buildings/admin.py:128 +#: buildings/admin.py:212 msgid "Mark selected buildings as rejected" msgstr "Marchează clădirile selectate ca respinse" -#: buildings/admin.py:135 +#: buildings/admin.py:219 #, python-brace-format msgid "{updated} building was successfully marked as {status}." msgid_plural "{updated} buildings were successfully marked as {status}." @@ -118,31 +98,35 @@ msgstr[0] "{updated} clădire a fost marcată ca {status}" msgstr[1] "{updated} clădiri au fost marcate ca {status}" msgstr[2] "{updated} de clădiri au fost marcate ca {status}" -#: buildings/admin.py:210 +#: buildings/admin.py:294 msgid "building resource" msgstr "resursă clădire" -#: buildings/admin.py:211 +#: buildings/admin.py:295 msgid "building resources" msgstr "resurse clădire" -#: buildings/admin.py:239 +#: buildings/admin.py:320 #, python-brace-format msgid "File with name '{file_name}' wasn't imported. Errors: {row_errors}" msgstr "" "Fișierul cu numele '{file_name}' nu a fost importat. Erori: {row_errors}" -#: buildings/admin.py:246 +#: buildings/admin.py:327 #, python-brace-format msgid "File with name '{file_name}' was imported." msgstr "Fișierul cu numele '{file_name}' a fost importat." -#: buildings/admin.py:252 +#: buildings/admin.py:334 #, python-brace-format -msgid "File with name '{file_name}' wasn't an XLSX." -msgstr "Fișierul cu numele '{file_name}' nu este XLSX." +msgid "" +"File with name '{file_name}' wasn't a proper data file. Accepted formats " +"are: CSV, XLSX." +msgstr "" +"Fișierul cu numele '{file_name}' un fișier de date corect. Formatele " +"acceptate sunt: CSV, XLSX." -#: buildings/admin.py:258 +#: buildings/admin.py:343 #, python-brace-format msgid "" "File with name '{file_name}' couldn't be imported. The error received was: " @@ -155,30 +139,6 @@ msgstr "" msgid "Buildings" msgstr "Clădiri" -#: buildings/models.py:9 -msgid "Sector 1" -msgstr "Sector 1" - -#: buildings/models.py:10 -msgid "Sector 2" -msgstr "Sector 2" - -#: buildings/models.py:11 -msgid "Sector 3" -msgstr "Sector 3" - -#: buildings/models.py:12 -msgid "Sector 4" -msgstr "Sector 4" - -#: buildings/models.py:13 -msgid "Sector 5" -msgstr "Sector 5" - -#: buildings/models.py:14 -msgid "Sector 6" -msgstr "Sector 6" - #: buildings/models.py:18 msgid "N/A" msgstr "N/A" @@ -215,365 +175,392 @@ msgstr "RS III" msgid "RS IV" msgstr "RS IV" -#: buildings/models.py:49 buildings/models.py:122 -msgid "work performed" -msgstr "lucrare efectuată" +#: buildings/models.py:27 +msgid "Consolidated" +msgstr "Consolidată" + +#: buildings/models.py:35 +msgid "no" +msgstr "nu" + +#: buildings/models.py:36 +msgid "yes, with private funding" +msgstr "da, cu fonduri proprii" -#: buildings/models.py:50 -msgid "works performed" -msgstr "lucrări efectuate" +#: buildings/models.py:37 +msgid "yes, with public funding" +msgstr "da, cu fonduri publice" + +#: buildings/models.py:38 +msgid "demolished" +msgstr "demolat" + +#: buildings/models.py:46 +msgid "None" +msgstr "Niciunul" + +#: buildings/models.py:47 +msgid "Owner" +msgstr "Proprietar" + +#: buildings/models.py:48 +msgid "Tenant" +msgstr "Chiriaș" + +#: buildings/models.py:49 +msgid "Head of the owners' association" +msgstr "Reprezentant cu funcție de conducere din asociația de proprietari" -#: buildings/models.py:69 +#: buildings/models.py:72 +msgid "type of work performed" +msgstr "tip de lucrare" + +#: buildings/models.py:73 +msgid "types of work performed" +msgstr "tipuri de lucrări" + +#: buildings/models.py:92 msgid "proximal utility" msgstr "utilitate din vecinătate" -#: buildings/models.py:70 buildings/models.py:150 +#: buildings/models.py:93 buildings/models.py:172 msgid "proximal utilities" msgstr "utilități din vecinătate" -#: buildings/models.py:84 +#: buildings/models.py:106 buildings/models.py:342 msgid "Pending" msgstr "În așteptare" -#: buildings/models.py:85 +#: buildings/models.py:107 buildings/models.py:343 msgid "Accepted" msgstr "Acceptat" -#: buildings/models.py:86 +#: buildings/models.py:108 buildings/models.py:344 msgid "Rejected" msgstr "Respins" -#: buildings/models.py:90 -msgid "no" -msgstr "nu" - -#: buildings/models.py:91 -msgid "yes, with private funding" -msgstr "da, cu fonduri proprii" - -#: buildings/models.py:92 -msgid "yes, with public funding" -msgstr "da, cu fonduri publice" - -#: buildings/models.py:93 -msgid "demolished" -msgstr "demolat" - -#: buildings/models.py:96 +#: buildings/models.py:111 msgid "general id" msgstr "id general" -#: buildings/models.py:97 +#: buildings/models.py:112 msgid "parent id" msgstr "clădire originală" -#: buildings/models.py:99 buildings/models.py:220 +#: buildings/models.py:114 buildings/models.py:182 buildings/models.py:321 +#: buildings/models.py:374 msgid "status" msgstr "stare" -#: buildings/models.py:101 +#: buildings/models.py:116 msgid "street number" msgstr "număr stradal" -#: buildings/models.py:102 +#: buildings/models.py:117 msgid "address" msgstr "adresă" -#: buildings/models.py:103 +#: buildings/models.py:118 msgid "county" msgstr "județ" -#: buildings/models.py:104 +#: buildings/models.py:119 msgid "locality" msgstr "localitate" -#: buildings/models.py:106 +#: buildings/models.py:121 msgid "latitude" msgstr "latitudine" -#: buildings/models.py:107 +#: buildings/models.py:122 msgid "longitude" msgstr "longitudine" -#: buildings/models.py:110 +#: buildings/models.py:125 msgid "risk category" msgstr "categorie de risc" -#: buildings/models.py:116 +#: buildings/models.py:131 msgid "height regime" msgstr "regim înălțime" -#: buildings/models.py:118 +#: buildings/models.py:133 msgid "is standing" msgstr "clădirea există" -#: buildings/models.py:119 +#: buildings/models.py:135 msgid "is consolidated" msgstr "clădire consolidată" -#: buildings/models.py:127 +#: buildings/models.py:144 buildings/models.py:223 +msgid "work performed" +msgstr "lucrare efectuată" + +#: buildings/models.py:149 msgid "apartment count" msgstr "număr de apartamente" -#: buildings/models.py:129 +#: buildings/models.py:151 msgid "permanently inhabited apartment count" msgstr "număr de locuințe ocupate permanent" -#: buildings/models.py:131 +#: buildings/models.py:153 msgid "resident count" msgstr "număr de locatari" -#: buildings/models.py:132 +#: buildings/models.py:154 msgid "owner count" msgstr "număr de proprietari" -#: buildings/models.py:133 +#: buildings/models.py:155 msgid "public apartment count" msgstr "număr de apartamente în proprietatea statului" -#: buildings/models.py:134 +#: buildings/models.py:156 msgid "public owners" msgstr "apartamente în proprietatea statului" -#: buildings/models.py:135 +#: buildings/models.py:157 msgid "rented apartment count" msgstr "număr de apartamente închiriate" -#: buildings/models.py:137 +#: buildings/models.py:159 msgid "has owners association" msgstr "are asociație de proprietari" -#: buildings/models.py:138 +#: buildings/models.py:160 msgid "6 month debt apartment count" msgstr "număr de apartamente cu datorii la întreținere mai mari de 6 luni" -#: buildings/models.py:140 +#: buildings/models.py:162 msgid "disconnected utilities" msgstr "imobil deconectat de la un serviciu de utilitate publică" -#: buildings/models.py:142 +#: buildings/models.py:164 msgid "broken utilities" msgstr "imobilul are elemente tehnice nefuncționale" -#: buildings/models.py:144 +#: buildings/models.py:166 msgid "office count" msgstr "număr de birouri" -#: buildings/models.py:145 +#: buildings/models.py:167 msgid "commercial space count" msgstr "număr de spații comerciale" -#: buildings/models.py:147 +#: buildings/models.py:169 msgid "self-owned commercial space count" msgstr "spații comerciale deținute de firmele care le utilizează" -#: buildings/models.py:153 +#: buildings/models.py:175 msgid "proximal utilities description" msgstr "comentarii privind utilitățile din vecinătate" -#: buildings/models.py:156 +#: buildings/models.py:178 +msgid "full name" +msgstr "nume complet" + +#: buildings/models.py:179 +msgid "email address" +msgstr "adresă de e-mail" + +#: buildings/models.py:180 +msgid "phone number" +msgstr "număr de telefon" + +#: buildings/models.py:184 +msgid "support needed" +msgstr "sprijin necesar" + +#: buildings/models.py:186 msgid "registration number" msgstr "număr înregistrare" -#: buildings/models.py:157 +#: buildings/models.py:187 msgid "examination year" msgstr "an examinare" -#: buildings/models.py:158 +#: buildings/models.py:188 msgid "certified expert" msgstr "expert certificat" -#: buildings/models.py:159 +#: buildings/models.py:189 msgid "observations" msgstr "observații" -#: buildings/models.py:161 +#: buildings/models.py:190 +msgid "has warning panels" +msgstr "are panouri de avertizare" + +#: buildings/models.py:192 msgid "year built" msgstr "an construcție" -#: buildings/models.py:162 -msgid "surface" -msgstr "suprafață" +#: buildings/models.py:193 +msgid "residential surface" +msgstr "suprafață rezidențială" -#: buildings/models.py:164 +#: buildings/models.py:194 +msgid "other surface" +msgstr "suprafață alte spații" + +#: buildings/models.py:196 msgid "cadastre number" msgstr "număr cadastral" -#: buildings/models.py:166 +#: buildings/models.py:198 msgid "land registry number" msgstr "număr carte funciară" -#: buildings/models.py:168 +#: buildings/models.py:200 msgid "administration update" msgstr "actualizare administrare" -#: buildings/models.py:169 +#: buildings/models.py:201 msgid "admin update" msgstr "actualizare de admin" -#: buildings/models.py:171 +#: buildings/models.py:203 msgid "created on" msgstr "creat la" -#: buildings/models.py:177 +#: buildings/models.py:213 msgid "building" msgstr "clădire" -#: buildings/models.py:178 +#: buildings/models.py:214 msgid "buildings" msgstr "clădiri" -#: buildings/models.py:188 +#: buildings/models.py:226 msgid "date work performed" msgstr "dată efectuare lucrări" -#: buildings/models.py:191 +#: buildings/models.py:229 msgid "work performed event" msgstr "eveniment de efectuare lucrări" -#: buildings/models.py:192 +#: buildings/models.py:230 msgid "work performed events" msgstr "evenimente de efectuare lucrări" -#: buildings/models.py:196 +#: buildings/models.py:235 msgid "people under risk" msgstr "persoane aflate sub risc" -#: buildings/models.py:197 +#: buildings/models.py:236 +msgid "The number of people (residents count) living in RS1 risk buildings" +msgstr "" +"Numărul de persoane (număr de locatari) care locuiesc în clădiri de clasa de " +"risc seismic RS1" + +#: buildings/models.py:240 +msgid "evaluated buildings" +msgstr "clădiri evaluate" + +#: buildings/models.py:241 +msgid "All the approved buildings in the database" +msgstr "Toate clădirile aprobate din baza de date" + +#: buildings/models.py:245 msgid "consolidated buildings" msgstr "clădiri consolidate" -#: buildings/models.py:200 +#: buildings/models.py:246 +msgid "" +"All the buildings that have been consolidated (risk category is " +"'consolidated')" +msgstr "" +"Toate clădirile care au fost consolidate (categoria de risc este " +"'consolidată')" + +#: buildings/models.py:301 msgid "statistic" msgstr "statistică" -#: buildings/models.py:201 +#: buildings/models.py:302 msgid "statistics" msgstr "statistici" -#: buildings/models.py:213 +#: buildings/models.py:314 msgid "Not tried" msgstr "Neîncercat" -#: buildings/models.py:214 +#: buildings/models.py:315 msgid "Imported successfully" msgstr "Importat cu succes" -#: buildings/models.py:215 +#: buildings/models.py:316 msgid "Import failed" msgstr "Importare eșuată" -#: buildings/models.py:218 pages/models.py:9 pages/models.py:95 +#: buildings/models.py:319 msgid "name" msgstr "nume" -#: buildings/models.py:219 +#: buildings/models.py:320 msgid "file" msgstr "fișier" -#: buildings/models.py:223 -msgid "CSV file" -msgstr "fișier CSV" +#: buildings/models.py:324 +msgid "Data file" +msgstr "Fișier de date" -#: buildings/models.py:224 -msgid "CSV files" -msgstr "fișiere CSV" +#: buildings/models.py:325 +msgid "Data files" +msgstr "Fișiere de date" -#: pages/apps.py:7 -msgid "Pages" -msgstr "Pagini" +#: buildings/models.py:350 +msgid "Image name does not contain an extension" +msgstr "Numele imaginii nu conține o extensie" -#: pages/models.py:15 pages/models.py:26 -msgid "category" -msgstr "categorie" +#: buildings/models.py:353 +msgid "Image extension is not accepted. Choose one of {}" +msgstr "Extensia imaginii nu e corectă. Trebuie să fie una din {}" -#: pages/models.py:16 -msgid "categories" -msgstr "categorii" +#: buildings/models.py:360 +msgid "Image limit for building is reached ({})" +msgstr "Limita de imagini pentru clădire a fost atinsă ({})" -#: pages/models.py:25 -msgid "Page category" -msgstr "Categorie pagină" +#: buildings/models.py:373 +msgid "Add image file" +msgstr "Adaugă o imagine" -#: pages/models.py:28 -msgid "Page title" -msgstr "Titlu pagină" - -#: pages/models.py:35 -msgid "Unique URL slug (leave empty to auto-generate)" -msgstr "Adresa unică a URL-ului (lăsați gol pentru a genera automat)" - -#: pages/models.py:37 -msgid "content" -msgstr "conținut" - -#: pages/models.py:39 -msgid "updated on" -msgstr "actualizat la" - -#: pages/models.py:44 -msgid "Last update time" -msgstr "Data ultimei actualizări" - -#: pages/models.py:47 -msgid "publishing date" -msgstr "dată publicare" - -#: pages/models.py:50 -msgid "Public page publishing date" -msgstr "Data publicării paginii" - -#: pages/models.py:53 -msgid "is published" -msgstr "este publicata" - -#: pages/models.py:56 -msgid "Is this page visible on the website" -msgstr "Este această pagină vizibila pe website" - -#: pages/models.py:60 -msgid "page" -msgstr "pagină" +#: seismic_site/settings/base.py:143 +msgid "Romanian" +msgstr "Română" -#: pages/models.py:61 -msgid "pages" -msgstr "pagini" +#: seismic_site/settings/base.py:144 +msgid "English" +msgstr "Engleză" -#: pages/models.py:92 -msgid "Page attachment" -msgstr "Atașament pagină" +#: seismic_site/settings/base.py:288 seismic_site/settings/base.py:290 +msgid "Acasă în Siguranță" +msgstr "Acasă în Siguranță" -#: pages/models.py:93 pages/models.py:104 -msgid "attachment" -msgstr "atașament" +#~ msgid "Bulina Roșie" +#~ msgstr "Acasă în Siguranță" -#: pages/models.py:95 -msgid "Attachment name" -msgstr "Nume atașament" +#~ msgid "works performed" +#~ msgstr "tipuri de lucrări" -#: pages/models.py:97 -msgid "upload date" -msgstr "dată încărcare" +#~ msgid "Sector 1" +#~ msgstr "Sector 1" -#: pages/models.py:99 -msgid "Attachment upload date" -msgstr "Data încărcării atașamentului" +#~ msgid "Sector 2" +#~ msgstr "Sector 2" -#: pages/models.py:101 -msgid "uploaded file" -msgstr "fișier încărcat" +#~ msgid "Sector 3" +#~ msgstr "Sector 3" -#: pages/models.py:105 -msgid "attachments" -msgstr "atașamente" +#~ msgid "Sector 4" +#~ msgstr "Sector 4" -#: seismic_site/settings.py:122 -msgid "English" -msgstr "Engleză" +#~ msgid "Sector 5" +#~ msgstr "Sector 5" -#: seismic_site/settings.py:122 -msgid "Romanian" -msgstr "Română" +#~ msgid "Sector 6" +#~ msgstr "Sector 6" #~ msgid "post code" #~ msgstr "cod poștal" diff --git a/api/manage.py b/api/manage.py index 2f538ca7..1a10c9f3 100755 --- a/api/manage.py +++ b/api/manage.py @@ -5,10 +5,9 @@ def main(): - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "seismic_site.settings") - os.environ.setdefault("DJANGO_CONFIGURATION", "Prod") + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "seismic_site.settings.development") try: - from configurations.management import execute_from_command_line + from django.core.management import execute_from_command_line except ImportError as exc: raise ImportError( "Couldn't import Django. Are you sure it's installed and " diff --git a/api/pages/__init__.py b/api/pages/__init__.py deleted file mode 100644 index 0519ecba..00000000 --- a/api/pages/__init__.py +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/api/pages/admin.py b/api/pages/admin.py deleted file mode 100644 index ce013f87..00000000 --- a/api/pages/admin.py +++ /dev/null @@ -1,20 +0,0 @@ -from django.contrib import admin - -from .models import Page, Category, Attachment - - -@admin.register(Category) -class CategoryAdmin(admin.ModelAdmin): - list_display = ("name",) - - -class DocumentInline(admin.TabularInline): - model = Attachment - - -@admin.register(Page) -class PageAdmin(admin.ModelAdmin): - list_display = ("title", "category", "updated_on", "is_published") - list_filter = ("is_published",) - # prepopulated_fields = {"slug": ("title",)} - inlines = [DocumentInline] diff --git a/api/pages/apps.py b/api/pages/apps.py deleted file mode 100644 index b600ec72..00000000 --- a/api/pages/apps.py +++ /dev/null @@ -1,7 +0,0 @@ -from django.apps import AppConfig -from django.utils.translation import gettext_lazy as _ - - -class PagesConfig(AppConfig): - name = "pages" - verbose_name = _("Pages") diff --git a/api/pages/fixtures/pages.json b/api/pages/fixtures/pages.json deleted file mode 100644 index fd375fa0..00000000 --- a/api/pages/fixtures/pages.json +++ /dev/null @@ -1,81 +0,0 @@ -[ - { - "model": "pages.category", - "pk": 1, - "fields": { - "name": "Article" - } - }, - { - "model": "pages.category", - "pk": 2, - "fields": { - "name": "News" - } - }, - { - "model": "pages.page", - "pk": 1, - "fields": { - "category": 1, - "title": "Lorem Ipsum", - "slug": "lorem-ipsum", - "content": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis erat lectus, consectetur vitae nunc non, pellentesque blandit dolor. Suspendisse lorem nulla, maximus in tellus at, tempor efficitur magna. Vivamus leo orci, ultricies tincidunt viverra sit amet, eleifend vitae purus. Maecenas metus urna, hendrerit sed sagittis at, iaculis eget sapien. Sed a nisl risus. Integer non pharetra tortor. Nullam leo enim, fermentum eleifend magna non, interdum suscipit enim.

\r\n\r\n

Phasellus tristique rhoncus dolor a porta. Sed velit lectus, varius sit amet purus quis, laoreet tincidunt diam. Proin ornare lobortis tristique. Nam faucibus sodales iaculis. Duis sollicitudin egestas nunc a dapibus. Sed nec gravida eros. Vivamus pretium semper arcu at imperdiet.

\r\n\r\n

Fusce tempus rutrum porta. Sed auctor molestie dolor, sit amet auctor lorem pellentesque non. Curabitur id dolor hendrerit, porttitor lacus hendrerit, viverra libero. Nulla nibh justo, condimentum id purus hendrerit, volutpat laoreet felis. Morbi diam risus, placerat eu sapien eget, commodo euismod dolor. Vivamus bibendum pulvinar dui, a ultrices erat. Phasellus elementum metus et sapien varius, vitae venenatis libero pharetra.

", - "updated_on": "2020-02-01T11:01:26.746Z", - "publishing_date": "2020-02-01T06:00:00Z", - "is_published": true - } - }, - { - "model": "pages.page", - "pk": 2, - "fields": { - "category": 2, - "title": "Donec aliquam", - "slug": "donec-aliquam", - "content": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse sapien mi, porta id euismod eget, pretium eget quam. Cras efficitur euismod tortor ut maximus. Nullam sed orci eros. Suspendisse dignissim velit sed ex luctus, id lacinia augue iaculis. Cras sodales justo mi, bibendum iaculis ligula sagittis sit amet. Fusce non turpis ut nibh lacinia congue. Phasellus auctor lacus ac risus fermentum, vel feugiat ligula interdum. Donec luctus, dolor id placerat rutrum, urna nunc mattis nisl, et facilisis libero tellus sit amet sapien. Vivamus condimentum placerat justo ut aliquet. Nunc arcu nunc, lobortis vel massa ut, dictum tincidunt elit. Donec cursus est nibh, eget aliquam est sagittis non. Etiam pulvinar dolor eu sem rutrum convallis. Suspendisse eros tellus, ullamcorper id nisl sit amet, auctor porta velit. Sed interdum euismod blandit. Etiam ac nulla efficitur, varius dolor eget, rutrum nulla. Nunc lacinia bibendum erat, in suscipit quam hendrerit non.

\r\n\r\n

Sed volutpat elit auctor libero euismod pharetra at at eros. Duis accumsan a lacus quis rhoncus. Nulla id finibus est. Nam a urna id sapien consectetur varius et vel velit. Morbi fringilla, nisi sit amet posuere pretium, ex ex maximus enim, ut interdum dolor ante eget metus. Vivamus nec leo hendrerit, accumsan nibh ut, fringilla orci. Nunc id cursus tortor. Vivamus libero diam, porta quis vehicula eu, interdum vel nisi. Fusce sagittis leo tellus, id sodales mi sollicitudin nec.

\r\n\r\n
\r\nMauris aliquet nisi sit amet purus mattis, ac tincidunt ipsum fringilla. Donec leo magna, feugiat sed lacinia a, dapibus sit amet sem. Vestibulum fermentum libero nisl, nec sagittis mauris tempus id. Etiam urna tellus, faucibus ut ante vitae, lobortis vulputate est. Phasellus sollicitudin arcu ex, ac dictum lorem ornare cursus. Nulla mollis dolor aliquam ligula aliquet ultricies. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam placerat tortor et lobortis pulvinar.
\r\n\r\n

Morbi massa diam, consectetur sed volutpat vitae, congue vel enim. Pellentesque laoreet vitae magna sed feugiat. Duis vel pulvinar justo. Aliquam sit amet diam nibh. In vel imperdiet mi. Aliquam erat nulla, rutrum in libero at, varius egestas eros. Integer orci arcu, faucibus at tortor ac, dictum egestas magna. Sed eget urna quis leo vestibulum facilisis in nec enim. Morbi vehicula elementum elit, nec vulputate massa volutpat ut. Suspendisse feugiat mattis eros, at mollis nisl fermentum dapibus. Nullam malesuada elit mi, ac tempor dolor suscipit blandit. Praesent lectus justo, mollis vitae cursus nec, imperdiet vitae nibh.

\r\n\r\n

Donec aliquam facilisis mi, a semper dolor efficitur ac. Donec ligula diam, ultricies et pretium non, interdum non ex. Quisque nec varius nisi. Nulla facilisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed feugiat semper nisi quis dignissim. Mauris ut sodales tellus. Aliquam erat volutpat. Nulla varius gravida mauris in varius. Praesent rhoncus quam a odio facilisis, id mollis risus porttitor. Quisque iaculis condimentum risus interdum efficitur.

", - "updated_on": "2020-02-01T11:01:09.756Z", - "publishing_date": "2019-12-09T09:46:55Z", - "is_published": true - } - }, - { - "model": "pages.page", - "pk": 3, - "fields": { - "category": 1, - "title": "Morbi ultrices", - "slug": "morbi-ultrices", - "content": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce ac velit rutrum, dictum tortor ac, iaculis tortor. Nulla lectus odio, consequat a rhoncus ac, placerat vitae justo. Integer cursus erat nec tincidunt faucibus. Vivamus sagittis est varius dui facilisis cursus at consectetur quam. Donec aliquet tristique odio, sit amet mollis nulla aliquet vel. Maecenas et tempor nibh. Integer gravida erat sit amet tellus hendrerit pharetra. Nunc in ullamcorper mi, consequat fringilla sapien. In dui libero, laoreet non finibus a, auctor et eros. Mauris feugiat ipsum leo. Mauris condimentum lectus vitae erat mollis scelerisque. Nulla vestibulum nisl odio, et congue diam pretium sit amet. Donec tempor dolor vel lectus tempus imperdiet.

\r\n\r\n

Morbi ultrices dignissim est, a rutrum erat bibendum eget. Nam vitae ligula et ipsum dapibus iaculis. Integer at bibendum tortor. Curabitur quam dui, vestibulum a egestas sed, finibus vel magna. Sed commodo quis magna viverra ullamcorper. Pellentesque lobortis placerat erat non laoreet. Morbi nec posuere orci. Aenean neque nisi, pharetra at sapien quis, euismod blandit dui.

\r\n\r\n

Nunc pharetra odio ac nunc convallis, nec aliquam tellus volutpat. Cras accumsan purus id est molestie, eget consequat diam scelerisque. Sed varius lectus posuere convallis rutrum. Suspendisse facilisis, neque a iaculis varius, nulla augue rhoncus sapien, sit amet sollicitudin nisi lorem sit amet purus. Curabitur libero est, aliquam eget erat nec, euismod ultricies magna. Nulla aliquet neque felis, id laoreet purus mollis ut. Cras neque libero, fermentum eu pulvinar nec, dapibus id lorem. Aenean in mattis mi. Nullam at mi non tortor ultrices gravida. Donec quis sagittis felis.

\r\n\r\n

In id est hendrerit, tincidunt dui vitae, consequat tortor. Maecenas eleifend odio auctor pulvinar congue. Donec ut vestibulum orci. Aliquam venenatis lectus vel turpis pretium varius. Aenean dapibus nibh nec rutrum interdum. Nam eget tempus magna. Ut hendrerit tempus diam sed dapibus.

\r\n\r\n

Nunc nec risus venenatis, condimentum nulla et, consectetur est. Pellentesque vel vehicula justo. Curabitur ac accumsan libero. Nulla facilisi. Cras in erat id sapien laoreet euismod viverra ut justo. Proin ut ante commodo, sodales mauris ac, aliquet odio. Morbi blandit diam sed dictum rutrum. Suspendisse vel metus vitae est tempor blandit non eu ligula. Curabitur ultricies diam sit amet turpis viverra, ultrices aliquam metus malesuada. Mauris a felis lorem.

", - "updated_on": "2020-02-01T11:00:40.954Z", - "publishing_date": "2019-08-13T18:00:00Z", - "is_published": false - } - }, - { - "model": "pages.page", - "pk": 4, - "fields": { - "category": 2, - "title": "Nunc pharetra", - "slug": "nunc-pharetra", - "content": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc id maximus purus. Vestibulum vitae tortor felis. Suspendisse sed tortor id nunc consectetur pulvinar sed pellentesque erat. Morbi volutpat est eget neque euismod dignissim. Nulla cursus mi tortor, ut rhoncus eros tempus nec. Nunc sodales urna vehicula, volutpat dolor nec, consectetur dui. Maecenas non tortor eget nisl fermentum tempor. Pellentesque non sapien lacus. In eget suscipit ex. Nam vitae mollis neque. Phasellus molestie odio ac velit interdum, vitae blandit libero blandit. Suspendisse ac varius sem. Etiam ultrices accumsan sapien in bibendum. Sed quis viverra ligula, iaculis sollicitudin orci. Donec et justo ante. Maecenas hendrerit, est at tincidunt vulputate, ante urna mollis mauris, ut mollis quam ligula accumsan massa. Fusce fermentum id lorem in congue. Curabitur porta, tellus sit amet cursus facilisis, risus urna pulvinar lorem, vel tristique urna tellus vitae erat. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Mauris malesuada, quam eu eleifend scelerisque, dolor lorem elementum ex, at sagittis lectus lectus quis eros. In finibus magna vitae quam finibus, ac scelerisque lectus viverra. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum vulputate purus quis consequat laoreet. Aenean quis lorem consectetur, ullamcorper elit et, cursus est. Suspendisse congue purus ipsum, eu laoreet ipsum venenatis vitae. Phasellus sit amet augue mi. Sed egestas elit erat, ac tincidunt massa accumsan eget. Suspendisse elit dolor, dictum scelerisque suscipit nec, elementum sed turpis. Quisque lobortis finibus nisl ac pulvinar. Praesent sed felis suscipit, iaculis nisi et, lobortis magna. Nam malesuada, orci facilisis accumsan molestie, turpis metus lacinia felis, sit amet elementum purus orci vel neque. Integer porttitor interdum feugiat. Quisque viverra, metus et suscipit ullamcorper, est lectus rutrum velit, nec pulvinar nunc augue in nisl. Vestibulum aliquet tempus lectus finibus euismod. Mauris bibendum, justo et congue interdum, purus orci finibus purus, at consectetur leo erat a leo. Morbi convallis convallis ipsum, a pellentesque justo volutpat eget. Sed mollis felis eget libero luctus, quis consectetur magna placerat. Praesent pulvinar ullamcorper vulputate. Mauris turpis nunc, molestie ut sapien eget, ullamcorper aliquet ligula. Quisque enim purus, blandit a interdum a, aliquam a urna. Etiam arcu purus, ultrices quis quam sit amet, laoreet imperdiet felis. Donec rhoncus mauris nec augue faucibus cursus. Cras viverra mauris congue ligula vestibulum, fringilla sagittis ipsum dictum. Integer id ipsum velit. Aliquam erat volutpat. Quisque volutpat tortor dolor, congue pulvinar enim semper quis.

", - "updated_on": "2020-02-01T11:00:28.351Z", - "publishing_date": "2019-05-08T09:08:00Z", - "is_published": true - } - }, - { - "model": "pages.page", - "pk": 5, - "fields": { - "category": 1, - "title": "PROPUNERE DE POLITICA PUBLICA PRIVIND LOCUIREA SUB RISC SEISMIC", - "slug": "propunere-de-politica-publica-privind-locuirea-sub-risc-seismic", - "content": "

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus luctus augue sit amet sem efficitur aliquam eu ultricies odio. Curabitur congue lectus ut nisi pellentesque eleifend. Sed ut libero et dolor pulvinar dapibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Morbi efficitur bibendum pharetra. Donec et luctus arcu, non egestas dui. Integer faucibus, metus eu ornare sollicitudin, enim elit iaculis dui, ut accumsan neque erat venenatis lacus. Nulla facilisi. Morbi in est nec lacus tempus sollicitudin ac eget massa. Vivamus consequat rutrum metus, et malesuada eros congue ac. Morbi mattis dolor id varius consequat. Curabitur vitae aliquet diam. Etiam in varius massa.

\r\n\r\n

Donec interdum sapien nec diam euismod facilisis. Donec nulla eros, posuere nec posuere eget, eleifend a turpis. Nulla in tellus nulla. Nullam in pellentesque orci, non elementum nibh. Integer vel mauris vestibulum, congue ex eu, mollis lacus. Nunc in porta dui. In luctus ac turpis eget eleifend. Donec id est ipsum. Morbi imperdiet et elit sit amet dignissim. Proin viverra dui nec quam tincidunt, a facilisis sem tincidunt. Sed sit amet erat mi. Nunc finibus erat eu nulla faucibus luctus. Cras faucibus ullamcorper vestibulum. Sed ligula enim, semper et diam a, ullamcorper bibendum nibh. Aliquam sit amet condimentum ipsum.

\r\n\r\n

Morbi non interdum nisl. Aliquam lacinia eros id metus sollicitudin eleifend. Integer congue quam in turpis tincidunt aliquet. Nunc vestibulum cursus tellus, quis tristique erat facilisis eget. Proin dignissim commodo mollis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean turpis justo, sagittis tempus euismod quis, malesuada at ipsum. Quisque quis mattis tellus, cursus sodales sapien. Vestibulum ac vulputate est. Maecenas porttitor arcu eget auctor elementum. Nam sem erat, convallis sit amet tempus et, interdum vel sapien. Ut feugiat facilisis suscipit.

\r\n\r\n

Aliquam placerat eros magna, quis accumsan nisi tempor in. Donec hendrerit ligula eu tincidunt venenatis. Ut vel elit sed tortor ultricies ultricies. Maecenas congue quam nec maximus vestibulum. Donec eros diam, bibendum et malesuada imperdiet, scelerisque ut nulla. Sed diam ipsum, porta quis enim et, convallis egestas purus. Sed sed tincidunt sem. Praesent rhoncus porta massa, a mattis turpis ultrices eu. Mauris vulputate tortor vitae maximus feugiat. Aliquam erat volutpat. Ut ut viverra libero, in aliquet dolor. Nam rhoncus mollis porta. Sed ut sem at eros sagittis placerat convallis nec augue. Phasellus vulputate nisi ex, nec hendrerit tortor luctus a. Vestibulum dui massa, semper non imperdiet id, porta nec nisl.

\r\n\r\n

Proin est odio, feugiat quis augue nec, suscipit aliquam urna. Praesent sed tincidunt nibh. Praesent eget mauris posuere, scelerisque neque a, hendrerit lectus. Quisque non luctus tortor, id ultrices libero. Donec in sodales lectus, vitae egestas lorem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Phasellus in turpis ornare, vehicula ligula in, laoreet lectus. Vivamus leo sem, aliquam in porta lobortis, rutrum quis lectus. Nunc maximus elementum risus, quis rutrum est porta vitae. Vivamus tincidunt bibendum placerat. Etiam risus sapien, hendrerit nec nunc eget, ullamcorper elementum lorem. Maecenas mollis neque purus, sit amet iaculis ipsum eleifend non. Ut consectetur mattis risus, a cursus neque tincidunt aliquet. Nunc ex metus, sodales vel sem vitae, gravida eleifend tellus. Praesent finibus, nibh at varius fringilla, nunc risus lobortis turpis, nec lobortis nisi tellus in justo.

", - "updated_on": "2020-02-01T11:00:24.035Z", - "publishing_date": "2020-01-14T09:58:31Z", - "is_published": true - } - } -] \ No newline at end of file diff --git a/api/pages/migrations/0001_initial.py b/api/pages/migrations/0001_initial.py deleted file mode 100644 index 18028117..00000000 --- a/api/pages/migrations/0001_initial.py +++ /dev/null @@ -1,49 +0,0 @@ -# Generated by Django 2.2.9 on 2020-01-31 21:19 - -import ckeditor.fields -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='Category', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=150, unique=True)), - ], - options={ - 'verbose_name_plural': 'categories', - }, - ), - migrations.CreateModel( - name='Page', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('title', models.CharField(blank=True, help_text='Page title', max_length=150)), - ('slug', models.SlugField(blank=True, help_text='Unique URL slug (leave empty to auto-generate)', unique=True)), - ('content', ckeditor.fields.RichTextField()), - ('updated_on', models.DateTimeField(auto_now=True, help_text='Last update time', null=True)), - ('publishing_date', models.DateTimeField(blank=True, help_text='Public page publishing date', null=True)), - ('is_published', models.BooleanField(db_index=True, default=False, help_text='Is this page visible on the website')), - ('category', models.ForeignKey(blank=True, help_text='Page category', null=True, on_delete=django.db.models.deletion.SET_NULL, to='pages.Category')), - ], - ), - migrations.CreateModel( - name='Attachment', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(help_text='Attachment name', max_length=150)), - ('upload_date', models.DateTimeField(auto_now=True, help_text='Attachment upload date')), - ('uploaded_file', models.FileField(upload_to='uploads/%Y/%m/%d/')), - ('page', models.ForeignKey(blank=True, help_text='Page attachment', on_delete=django.db.models.deletion.CASCADE, to='pages.Page')), - ], - ), - ] diff --git a/api/pages/migrations/0002_auto_20200201_1008.py b/api/pages/migrations/0002_auto_20200201_1008.py deleted file mode 100644 index abb7b4cf..00000000 --- a/api/pages/migrations/0002_auto_20200201_1008.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2.9 on 2020-02-01 10:08 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('pages', '0001_initial'), - ] - - operations = [ - migrations.AlterField( - model_name='page', - name='slug', - field=models.SlugField(blank=True, help_text='Unique URL slug (leave empty to auto-generate)', max_length=150, unique=True), - ), - ] diff --git a/api/pages/migrations/0003_auto_20200229_1302.py b/api/pages/migrations/0003_auto_20200229_1302.py deleted file mode 100644 index d1e591b7..00000000 --- a/api/pages/migrations/0003_auto_20200229_1302.py +++ /dev/null @@ -1,87 +0,0 @@ -# Generated by Django 2.2.10 on 2020-02-29 13:02 - -import ckeditor.fields -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('pages', '0002_auto_20200201_1008'), - ] - - operations = [ - migrations.AlterModelOptions( - name='attachment', - options={'verbose_name': 'attachment', 'verbose_name_plural': 'attachments'}, - ), - migrations.AlterModelOptions( - name='category', - options={'verbose_name': 'category', 'verbose_name_plural': 'categories'}, - ), - migrations.AlterModelOptions( - name='page', - options={'verbose_name': 'page', 'verbose_name_plural': 'pages'}, - ), - migrations.AlterField( - model_name='attachment', - name='name', - field=models.CharField(help_text='Attachment name', max_length=150, verbose_name='name'), - ), - migrations.AlterField( - model_name='attachment', - name='page', - field=models.ForeignKey(blank=True, help_text='Page attachment', on_delete=django.db.models.deletion.CASCADE, to='pages.Page', verbose_name='attachment'), - ), - migrations.AlterField( - model_name='attachment', - name='upload_date', - field=models.DateTimeField(auto_now=True, help_text='Attachment upload date', verbose_name='upload date'), - ), - migrations.AlterField( - model_name='attachment', - name='uploaded_file', - field=models.FileField(upload_to='uploads/%Y/%m/%d/', verbose_name='uploaded file'), - ), - migrations.AlterField( - model_name='category', - name='name', - field=models.CharField(max_length=150, unique=True, verbose_name='name'), - ), - migrations.AlterField( - model_name='page', - name='category', - field=models.ForeignKey(blank=True, help_text='Page category', null=True, on_delete=django.db.models.deletion.SET_NULL, to='pages.Category', verbose_name='category'), - ), - migrations.AlterField( - model_name='page', - name='content', - field=ckeditor.fields.RichTextField(verbose_name='content'), - ), - migrations.AlterField( - model_name='page', - name='is_published', - field=models.BooleanField(db_index=True, default=False, help_text='Is this page visible on the website', verbose_name='is published'), - ), - migrations.AlterField( - model_name='page', - name='publishing_date', - field=models.DateTimeField(blank=True, help_text='Public page publishing date', null=True, verbose_name='publishing date'), - ), - migrations.AlterField( - model_name='page', - name='slug', - field=models.SlugField(blank=True, help_text='Unique URL slug (leave empty to auto-generate)', max_length=150, unique=True, verbose_name='slug'), - ), - migrations.AlterField( - model_name='page', - name='title', - field=models.CharField(blank=True, help_text='Page title', max_length=150, verbose_name='title'), - ), - migrations.AlterField( - model_name='page', - name='updated_on', - field=models.DateTimeField(auto_now=True, help_text='Last update time', null=True, verbose_name='updated on'), - ), - ] diff --git a/api/pages/models.py b/api/pages/models.py deleted file mode 100644 index 269f8a26..00000000 --- a/api/pages/models.py +++ /dev/null @@ -1,112 +0,0 @@ -from ckeditor.fields import RichTextField -from django.db import models -from django.utils import timezone -from django.utils.text import slugify -from django.utils.translation import gettext_lazy as _ - - -class Category(models.Model): - name = models.CharField(_("name"), blank=False, null=False, max_length=150, unique=True) - - def __str__(self): - return "{}".format(self.name) - - class Meta: - verbose_name = _("category") - verbose_name_plural = _("categories") - - -class Page(models.Model): - category = models.ForeignKey( - Category, - blank=True, - null=True, - on_delete=models.SET_NULL, - help_text=_("Page category"), - verbose_name=_("category"), - ) - title = models.CharField(_("title"), blank=True, max_length=150, help_text=_("Page title")) - slug = models.SlugField( - _("slug"), - unique=True, - blank=True, - null=False, - max_length=150, - help_text=_("Unique URL slug (leave empty to auto-generate)"), - ) - content = RichTextField(_("content")) - updated_on = models.DateTimeField( - _("updated on"), - auto_now=timezone.now, - blank=True, - null=True, - editable=False, - help_text=_("Last update time"), - ) - publishing_date = models.DateTimeField( - _("publishing date"), - blank=True, - null=True, - help_text=_("Public page publishing date"), - ) - is_published = models.BooleanField( - _("is published"), - default=False, - db_index=True, - help_text=_("Is this page visible on the website"), - ) - - class Meta: - verbose_name = _("page") - verbose_name_plural = _("pages") - - def __str__(self): - return "{}".format(self.title) - - def save(self, *args, **kwargs): - if not self.slug: - self.slug = slugify(self.title) - is_unique = False - suffix = 0 - while not is_unique: - try: - existing_page = Page.objects.get(slug=self.slug) - except Page.DoesNotExist: - is_unique = True - else: - if existing_page.id == self.id: - is_unique = True - else: - suffix += 1 - self.slug = slugify("{} {}".format(self.title, suffix)) - - super().save(*args, **kwargs) - - -class Attachment(models.Model): - page = models.ForeignKey( - Page, - blank=True, - null=False, - on_delete=models.CASCADE, - help_text=_("Page attachment"), - verbose_name=_("attachment"), - ) - name = models.CharField(_("name"), max_length=150, help_text=_("Attachment name")) - upload_date = models.DateTimeField( - _("upload date"), - auto_now=timezone.now, - help_text=_("Attachment upload date"), - ) - uploaded_file = models.FileField(_("uploaded file"), upload_to="uploads/%Y/%m/%d/", max_length=100) - - class Meta: - verbose_name = _("attachment") - verbose_name_plural = _("attachments") - - def __str__(self): - return "{}{}".format(self.uploaded_file.url, self.name) - - -# class InlineResource(models.Model): -# pass diff --git a/api/pages/serializers.py b/api/pages/serializers.py deleted file mode 100644 index 1fab7667..00000000 --- a/api/pages/serializers.py +++ /dev/null @@ -1,9 +0,0 @@ -from rest_framework import serializers - -from .models import Page - - -class PageSerializer(serializers.ModelSerializer): - class Meta: - model = Page - exclude = () # TODO: restrict to the necessary fields if needed diff --git a/api/pages/views.py b/api/pages/views.py deleted file mode 100644 index 1f21fb8f..00000000 --- a/api/pages/views.py +++ /dev/null @@ -1,14 +0,0 @@ -from rest_framework import viewsets - -from .serializers import PageSerializer -from .models import Page - - -class PagesViewSet(viewsets.ReadOnlyModelViewSet): - """ - API endpoint that allows pages to be viewed or edited. - """ - - queryset = Page.objects.all().order_by("-publishing_date") - serializer_class = PageSerializer - lookup_field = "slug" diff --git a/api/pyproject.toml b/api/pyproject.toml new file mode 100644 index 00000000..ba31277a --- /dev/null +++ b/api/pyproject.toml @@ -0,0 +1,71 @@ +[tool.ruff] +# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default. +select = ["E", "F"] +ignore = [] + +# Allow autofix for all enabled rules (when `--fix`) is provided. +fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"] +unfixable = [] + +# Exclude a variety of commonly ignored directories. +exclude = [ + ".bzr", + ".direnv", + ".eggs", + ".git", + ".git-rewrite", + ".hg", + ".mypy_cache", + ".nox", + ".pants.d", + ".pytype", + ".ruff_cache", + ".svn", + ".tox", + ".venv", + "__pypackages__", + "_build", + "buck-out", + "build", + "dist", + "node_modules", + "venv", + "migrations", +] + +# Same as Black. +line-length = 120 + +# Allow unused variables when underscore-prefixed. +dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" + +# Assume Python 3.11. +target-version = "py311" + +[tool.ruff.mccabe] +# Unlike Flake8, default to a complexity level of 10. +max-complexity = 10 + +[tool.ruff.extend-per-file-ignores] +"settings/*.py" = ["F403", "F405"] +"*/__init__.py" = ["F401"] + +[tool.pytest.ini_options] +DJANGO_SETTINGS_MODULE = "backend.test_settings" + +python_files = [ + "test.py", + "test*.py", + "*test.py", + "*tests.py", +] +filterwarnings = [ + "ignore:The django.utils.baseconv module is deprecated." +] + +[tool.black] +line-length = 120 +target-version = ["py311"] +extend-exclude = '''( + (.+/)?migrations/.+ +)''' diff --git a/api/pytest.ini b/api/pytest.ini index 259b874d..b72dcc4c 100644 --- a/api/pytest.ini +++ b/api/pytest.ini @@ -1,3 +1,3 @@ [pytest] -DJANGO_SETTINGS_MODULE = seismic_site.settings -DJANGO_CONFIGURATION=Test +DJANGO_SETTINGS_MODULE = seismic_site.settings.test +ENVIRONMENT = test diff --git a/api/requirements-dev.in b/api/requirements-dev.in index d41aca3c..5eec65ab 100644 --- a/api/requirements-dev.in +++ b/api/requirements-dev.in @@ -1,12 +1,23 @@ -pytest -pytest-django -pytest-flake8 -pytest-cov -pdbpp -ipython -pip-tools -black==21.5b1 -Faker -tqdm - --r requirements.in +# django +django-debug-toolbar==4.2.0 +django-extensions==3.2.3 +werkzeug==3.0.0 + +# tests +pytest==7.4.2 +pytest-flake8==1.1.1 +pytest-cov==4.1.0 +pytest-django==4.5.2 +faker==19.8.0 +tqdm==4.66.1 + +# utils +ipython==8.16.1 + +# style checker +black==23.9.1 + +# dependency management +pip-tools==7.3.0 + +-r requirements.txt diff --git a/api/requirements-dev.txt b/api/requirements-dev.txt index f7b47716..f5b5e035 100644 --- a/api/requirements-dev.txt +++ b/api/requirements-dev.txt @@ -1,251 +1,306 @@ # -# This file is autogenerated by pip-compile -# To update, run: +# This file is autogenerated by pip-compile with Python 3.11 +# by the following command: # -# pip-compile --output-file=requirements-dev.txt requirements-dev.in requirements.in +# pip-compile --output-file=requirements-dev.txt --strip-extras requirements-dev.in # -appdirs==1.4.4 - # via black -asgiref==3.4.1 - # via django -attrs==21.2.0 +asgiref==3.7.2 + # via + # -r requirements.txt + # django +asttokens==2.4.0 + # via stack-data +attrs==23.1.0 # via + # -r requirements.txt # jsonschema - # pytest + # referencing backcall==0.2.0 # via ipython -black==21.5b1 +black==23.9.1 # via -r requirements-dev.in -boto3==1.18.46 - # via -r requirements.in -botocore==1.21.46 +blessed==1.20.0 + # via -r requirements.txt +boto3==1.28.61 + # via -r requirements.txt +botocore==1.31.61 # via + # -r requirements.txt # boto3 # s3transfer -brotlipy==0.7.0 - # via -r requirements.in -cffi==1.14.6 - # via brotlipy -click==8.0.1 +build==1.0.3 + # via pip-tools +click==8.1.7 # via # black # pip-tools -coverage==5.5 - # via pytest-cov -decorator==5.1.0 +coverage==7.3.2 + # via + # coverage + # pytest-cov +croniter==2.0.1 + # via -r requirements.txt +decorator==5.1.1 # via ipython defusedxml==0.7.1 - # via odfpy -diff-match-patch==20200713 - # via django-import-export -dj-database-url==0.5.0 - # via -r requirements.in -django-ckeditor==6.1.0 - # via -r requirements.in -django-configurations==2.2 - # via -r requirements.in -django-cors-headers==3.8.0 - # via -r requirements.in -django-import-export==2.6.0 - # via -r requirements.in -django-jquery==3.1.0 - # via -r requirements.in -django-js-asset==1.2.2 - # via django-ckeditor -django-storages==1.11.1 - # via -r requirements.in -django-taggit-serializer==0.1.7 - # via -r requirements.in -django-taggit==1.5.1 - # via - # -r requirements.in - # django-taggit-serializer -django==3.2.7 - # via - # -r requirements.in + # via + # -r requirements.txt + # odfpy +diff-match-patch==20230430 + # via + # -r requirements.txt + # django-import-export +dj-database-url==2.1.0 + # via -r requirements.txt +django==4.2.6 + # via + # -r requirements.txt + # dj-database-url # django-cors-headers + # django-debug-toolbar + # django-extensions # django-import-export + # django-jazzmin # django-jquery + # django-picklefield + # django-q2 # django-storages - # django-taggit # djangorestframework # drf-spectacular -djangorestframework==3.12.4 +django-cors-headers==4.2.0 + # via -r requirements.txt +django-debug-toolbar==4.2.0 + # via -r requirements-dev.in +django-environ==0.11.2 + # via -r requirements.txt +django-extensions==3.2.3 + # via -r requirements-dev.in +django-import-export==3.3.1 + # via -r requirements.txt +django-jazzmin==2.6.0 + # via -r requirements.txt +django-jquery==3.1.0 + # via -r requirements.txt +django-picklefield==3.1 # via - # -r requirements.in + # -r requirements.txt + # django-q2 +django-q2==1.6.1 + # via -r requirements.txt +django-storages==1.14.2 + # via -r requirements.txt +djangorestframework==3.14.0 + # via + # -r requirements.txt # drf-spectacular -drf-spectacular==0.19.0 - # via -r requirements.in +drf-spectacular==0.26.5 + # via -r requirements.txt et-xmlfile==1.1.0 - # via openpyxl -faker==8.13.2 + # via + # -r requirements.txt + # openpyxl +executing==2.0.0 + # via stack-data +faker==19.8.0 # via -r requirements-dev.in -fancycompleter==0.9.1 - # via pdbpp -flake8==3.9.2 +flake8==6.1.0 # via pytest-flake8 -gunicorn==20.1.0 - # via -r requirements.in -importlib-metadata==4.8.1 +gevent==23.9.1 + # via -r requirements.txt +greenlet==3.0.0 # via - # click - # flake8 - # jsonschema - # pep517 - # pluggy - # pytest + # -r requirements.txt + # gevent +gunicorn==21.2.0 + # via -r requirements.txt inflection==0.5.1 - # via drf-spectacular -iniconfig==1.1.1 + # via + # -r requirements.txt + # drf-spectacular +iniconfig==2.0.0 # via pytest -ipython==7.27.0 +ipython==8.16.1 # via -r requirements-dev.in -jedi==0.18.0 +jedi==0.19.1 # via ipython -jmespath==0.10.0 +jmespath==1.0.1 # via + # -r requirements.txt # boto3 # botocore -jsonschema==3.2.0 - # via drf-spectacular +jsonschema==4.19.1 + # via + # -r requirements.txt + # drf-spectacular +jsonschema-specifications==2023.7.1 + # via + # -r requirements.txt + # jsonschema markuppy==1.14 - # via tablib -matplotlib-inline==0.1.3 + # via + # -r requirements.txt + # tablib +markupsafe==2.1.3 + # via werkzeug +matplotlib-inline==0.1.6 # via ipython -mccabe==0.6.1 +mccabe==0.7.0 # via flake8 -mypy-extensions==0.4.3 +mypy-extensions==1.0.0 # via black odfpy==1.4.1 - # via tablib -openpyxl==3.0.9 - # via tablib -packaging==21.0 - # via pytest -parso==0.8.2 + # via + # -r requirements.txt + # tablib +openpyxl==3.1.2 + # via + # -r requirements.txt + # tablib +packaging==23.2 + # via + # -r requirements.txt + # black + # build + # gunicorn + # pytest +parso==0.8.3 # via jedi -pathspec==0.9.0 +pathspec==0.11.2 # via black -pdbpp==0.10.3 - # via -r requirements-dev.in -pep517==0.11.0 - # via pip-tools pexpect==4.8.0 # via ipython pickleshare==0.7.5 # via ipython -pillow==8.3.2 - # via -r requirements.in -pip-tools==6.3.0 +pillow==10.0.1 + # via -r requirements.txt +pip-tools==7.3.0 # via -r requirements-dev.in -pluggy==1.0.0 +platformdirs==3.11.0 + # via black +pluggy==1.3.0 # via pytest -prompt-toolkit==3.0.20 +prompt-toolkit==3.0.39 # via ipython -psycopg2==2.9.1 - # via -r requirements.in +psutil==5.9.6 + # via -r requirements.txt +psycopg2-binary==2.9.9 + # via -r requirements.txt ptyprocess==0.7.0 # via pexpect -py==1.10.0 - # via pytest -pycodestyle==2.7.0 +pure-eval==0.2.2 + # via stack-data +pycodestyle==2.11.0 # via flake8 -pycparser==2.20 - # via cffi -pyflakes==2.3.1 +pyflakes==3.1.0 # via flake8 -pygments==2.10.0 - # via - # ipython - # pdbpp -pyparsing==2.4.7 - # via packaging -pyrepl==0.9.0 - # via fancycompleter -pyrsistent==0.18.0 - # via jsonschema -pytest-cov==2.12.1 - # via -r requirements-dev.in -pytest-django==4.4.0 - # via -r requirements-dev.in -pytest-flake8==1.0.7 - # via -r requirements-dev.in -pytest==6.2.5 +pygments==2.16.1 + # via ipython +pyproject-hooks==1.0.0 + # via build +pytest==7.4.2 # via # -r requirements-dev.in # pytest-cov # pytest-django # pytest-flake8 +pytest-cov==4.1.0 + # via -r requirements-dev.in +pytest-django==4.5.2 + # via -r requirements-dev.in +pytest-flake8==1.1.1 + # via -r requirements-dev.in python-dateutil==2.8.2 # via + # -r requirements.txt # botocore + # croniter # faker -pytz==2021.1 +pytz==2023.3.post1 # via - # -r requirements.in - # django -pyyaml==5.4.1 + # -r requirements.txt + # croniter + # djangorestframework +pyyaml==6.0.1 # via + # -r requirements.txt # drf-spectacular # tablib -regex==2021.8.28 - # via black -s3transfer==0.5.0 - # via boto3 -six==1.16.0 +referencing==0.30.2 + # via + # -r requirements.txt + # jsonschema + # jsonschema-specifications +rpds-py==0.10.4 # via - # django-configurations - # django-taggit-serializer + # -r requirements.txt # jsonschema + # referencing +s3transfer==0.7.0 + # via + # -r requirements.txt + # boto3 +six==1.16.0 + # via + # -r requirements.txt + # asttokens + # blessed # python-dateutil -sqlparse==0.4.2 - # via django -tablib[html,ods,xls,xlsx,yaml]==3.0.0 +sqlparse==0.4.4 # via - # -r requirements.in - # django-import-export -text-unidecode==1.3 - # via faker -toml==0.10.2 + # -r requirements.txt + # django + # django-debug-toolbar +stack-data==0.6.3 + # via ipython +tablib==3.5.0 # via - # black - # pytest - # pytest-cov -tomli==1.2.1 - # via pep517 -tqdm==4.62.3 + # -r requirements.txt + # django-import-export +tqdm==4.66.1 # via -r requirements-dev.in -traitlets==5.1.0 +traitlets==5.11.2 # via # ipython # matplotlib-inline -typed-ast==1.4.3 - # via black -typing-extensions==3.10.0.2 +typing-extensions==4.8.0 # via - # asgiref - # black - # importlib-metadata -uritemplate==3.0.1 - # via drf-spectacular -urllib3==1.26.7 - # via botocore -wcwidth==0.2.5 - # via prompt-toolkit -wheel==0.37.0 + # -r requirements.txt + # dj-database-url +uritemplate==4.1.1 + # via + # -r requirements.txt + # drf-spectacular +urllib3==1.26.17 + # via + # -r requirements.txt + # botocore +wcwidth==0.2.8 + # via + # -r requirements.txt + # blessed + # prompt-toolkit +werkzeug==3.0.0 + # via -r requirements-dev.in +wheel==0.41.2 # via pip-tools -whitenoise==5.3.0 - # via -r requirements.in -wmctrl==0.4 - # via pdbpp +whitenoise==6.5.0 + # via -r requirements.txt xlrd==2.0.1 - # via tablib + # via + # -r requirements.txt + # tablib xlwt==1.3.0 - # via tablib -zipp==3.5.0 # via - # importlib-metadata - # pep517 + # -r requirements.txt + # tablib +zope-event==5.0 + # via + # -r requirements.txt + # gevent +zope-interface==6.1 + # via + # -r requirements.txt + # gevent # The following packages are considered to be unsafe in a requirements file: # pip diff --git a/api/requirements.in b/api/requirements.in index e5e6c3e0..dbbc62ef 100644 --- a/api/requirements.in +++ b/api/requirements.in @@ -1,32 +1,36 @@ # django and related apps -django~=3.2.4 -django-configurations -django-import-export -djangorestframework -django-cors-headers -django-ckeditor -django-storages -django-taggit -django-taggit-serializer -django-jquery +django==4.2.6 +django-environ==0.11.2 +django-cors-headers==4.2.0 +django-storages==1.14.2 + +# django admin +django-jquery==3.1.0 +django-import-export==3.3.1 +django-jazzmin==2.6.0 + +# job scheduler +django-q2~=1.6.1 +blessed~=1.20.0 # optional requirement for django-q2 +psutil~=5.9.6 # optional requirement for django-q2 +croniter~=2.0.1 # optional requirement for django-q2 + +# REST framework +djangorestframework==3.14.0 +drf-spectacular==0.26.5 # database -psycopg2 -dj-database-url +psycopg2-binary==2.9.9 +dj-database-url==2.1.0 # file handling -boto3 -Pillow -whitenoise -brotlipy +boto3==1.28.61 +pillow==10.0.1 +whitenoise==6.5.0 # misc libraries -pytz -tablib +tablib==3.5.0 # wsgi server -gunicorn - -# doc-generation -drf-spectacular - +gunicorn==21.2.0 +gevent==23.9.1 diff --git a/api/requirements.txt b/api/requirements.txt index e9afd58d..0f21d295 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,133 +1,148 @@ # -# This file is autogenerated by pip-compile -# To update, run: +# This file is autogenerated by pip-compile with Python 3.11 +# by the following command: # -# pip-compile --output-file=requirements.txt requirements.in +# pip-compile --output-file=requirements.txt --strip-extras requirements.in # -asgiref==3.4.1 +asgiref==3.7.2 # via django -attrs==21.2.0 - # via jsonschema -boto3==1.18.46 +attrs==23.1.0 + # via + # jsonschema + # referencing +blessed==1.20.0 # via -r requirements.in -botocore==1.21.46 +boto3==1.28.61 + # via -r requirements.in +botocore==1.31.61 # via # boto3 # s3transfer -brotlipy==0.7.0 +croniter==2.0.1 # via -r requirements.in -cffi==1.14.6 - # via brotlipy defusedxml==0.7.1 # via odfpy -diff-match-patch==20200713 +diff-match-patch==20230430 # via django-import-export -dj-database-url==0.5.0 - # via -r requirements.in -django-ckeditor==6.1.0 - # via -r requirements.in -django-configurations==2.2 - # via -r requirements.in -django-cors-headers==3.8.0 - # via -r requirements.in -django-import-export==2.6.0 - # via -r requirements.in -django-jquery==3.1.0 +dj-database-url==2.1.0 # via -r requirements.in -django-js-asset==1.2.2 - # via django-ckeditor -django-storages==1.11.1 - # via -r requirements.in -django-taggit-serializer==0.1.7 - # via -r requirements.in -django-taggit==1.5.1 - # via - # -r requirements.in - # django-taggit-serializer -django==3.2.7 +django==4.2.6 # via # -r requirements.in + # dj-database-url # django-cors-headers # django-import-export + # django-jazzmin # django-jquery + # django-picklefield + # django-q2 # django-storages - # django-taggit # djangorestframework # drf-spectacular -djangorestframework==3.12.4 +django-cors-headers==4.2.0 + # via -r requirements.in +django-environ==0.11.2 + # via -r requirements.in +django-import-export==3.3.1 + # via -r requirements.in +django-jazzmin==2.6.0 + # via -r requirements.in +django-jquery==3.1.0 + # via -r requirements.in +django-picklefield==3.1 + # via django-q2 +django-q2==1.6.1 + # via -r requirements.in +django-storages==1.14.2 + # via -r requirements.in +djangorestframework==3.14.0 # via # -r requirements.in # drf-spectacular -drf-spectacular==0.19.0 +drf-spectacular==0.26.5 # via -r requirements.in et-xmlfile==1.1.0 # via openpyxl -gunicorn==20.1.0 +gevent==23.9.1 + # via -r requirements.in +greenlet==3.0.0 + # via gevent +gunicorn==21.2.0 # via -r requirements.in -importlib-metadata==4.8.1 - # via jsonschema inflection==0.5.1 # via drf-spectacular -jmespath==0.10.0 +jmespath==1.0.1 # via # boto3 # botocore -jsonschema==3.2.0 +jsonschema==4.19.1 # via drf-spectacular +jsonschema-specifications==2023.7.1 + # via jsonschema markuppy==1.14 # via tablib odfpy==1.4.1 # via tablib -openpyxl==3.0.9 +openpyxl==3.1.2 # via tablib -pillow==8.3.2 +packaging==23.2 + # via gunicorn +pillow==10.0.1 # via -r requirements.in -psycopg2==2.9.1 +psutil==5.9.6 + # via -r requirements.in +psycopg2-binary==2.9.9 # via -r requirements.in -pycparser==2.20 - # via cffi -pyrsistent==0.18.0 - # via jsonschema python-dateutil==2.8.2 - # via botocore -pytz==2021.1 # via - # -r requirements.in - # django -pyyaml==5.4.1 + # botocore + # croniter +pytz==2023.3.post1 + # via + # croniter + # djangorestframework +pyyaml==6.0.1 # via # drf-spectacular # tablib -s3transfer==0.5.0 +referencing==0.30.2 + # via + # jsonschema + # jsonschema-specifications +rpds-py==0.10.4 + # via + # jsonschema + # referencing +s3transfer==0.7.0 # via boto3 six==1.16.0 # via - # django-configurations - # django-taggit-serializer - # jsonschema + # blessed # python-dateutil -sqlparse==0.4.2 +sqlparse==0.4.4 # via django -tablib[html,ods,xls,xlsx,yaml]==3.0.0 +tablib==3.5.0 # via # -r requirements.in # django-import-export -typing-extensions==3.10.0.2 - # via - # asgiref - # importlib-metadata -uritemplate==3.0.1 +typing-extensions==4.8.0 + # via dj-database-url +uritemplate==4.1.1 # via drf-spectacular -urllib3==1.26.7 +urllib3==1.26.17 # via botocore -whitenoise==5.3.0 +wcwidth==0.2.8 + # via blessed +whitenoise==6.5.0 # via -r requirements.in xlrd==2.0.1 # via tablib xlwt==1.3.0 # via tablib -zipp==3.5.0 - # via importlib-metadata +zope-event==5.0 + # via gevent +zope-interface==6.1 + # via gevent # The following packages are considered to be unsafe in a requirements file: # setuptools diff --git a/api/seismic_site/caching.py b/api/seismic_site/caching.py new file mode 100644 index 00000000..b4d09d61 --- /dev/null +++ b/api/seismic_site/caching.py @@ -0,0 +1,24 @@ +from typing import Any + +from django.core.cache import caches + + +def get_from_cache(data_key: str, data_default: Any = object()) -> Any: + cached_data = caches["memory"].get(data_key, data_default) + + if cached_data is data_default: + cached_data = caches["default"].get(data_key, data_default) + if cached_data is not data_default: + caches["memory"].set(data_key, cached_data) + + return cached_data + + +def set_to_cache(data_key: str, data: Any, timeout: int = None) -> None: + for cache in caches.all(): + cache.set(data_key, data, timeout=timeout) + + +def delete_from_cache(data_key: str) -> None: + for cache in caches.all(): + cache.delete(data_key) diff --git a/api/seismic_site/settings.py b/api/seismic_site/settings.py deleted file mode 100644 index bcd6ab1c..00000000 --- a/api/seismic_site/settings.py +++ /dev/null @@ -1,191 +0,0 @@ -""" -Django settings for seismic_site project. - -For more information on this file, see -https://docs.djangoproject.com/en/2.2/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/2.2/ref/settings/ -""" - -import os - -from django.utils.translation import gettext_lazy as _ -from configurations import Configuration, values - -# Build paths inside the project like this: os.path.join(BASE_DIR, ...) -BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - - -class Base(Configuration): - """ - For more info about the `django-configurations` library, see - https://django-configurations.readthedocs.io/en/latest/ - """ - - DEBUG = False - - SECRET_KEY = values.Value() - - ALLOWED_HOSTS = [] - CORS_ORIGIN_ALLOW_ALL = False - SITE_URL = values.Value() - SITE_ID = 1 - - INSTALLED_APPS = [ - # django apps - "django.contrib.admin", - "django.contrib.auth", - "django.contrib.contenttypes", - "django.contrib.sessions", - "django.contrib.messages", - "django.contrib.staticfiles", - "django.contrib.sites", - "django.contrib.sitemaps", - "django.contrib.humanize", - "django.contrib.postgres", - # third-party apps - "rest_framework", - "storages", - "taggit", - "taggit_serializer", - "corsheaders", - "ckeditor", - "ckeditor_uploader", - # project apps - "buildings", - "pages", - "blog", - # api documentation - "drf_spectacular", - ] - - MIDDLEWARE = [ - "django.middleware.security.SecurityMiddleware", - "corsheaders.middleware.CorsMiddleware", - "whitenoise.middleware.WhiteNoiseMiddleware", - "django.contrib.sessions.middleware.SessionMiddleware", - "django.middleware.locale.LocaleMiddleware", - "django.middleware.common.CommonMiddleware", - "django.middleware.csrf.CsrfViewMiddleware", - "django.contrib.auth.middleware.AuthenticationMiddleware", - "django.contrib.messages.middleware.MessageMiddleware", - "django.middleware.clickjacking.XFrameOptionsMiddleware", - ] - - ROOT_URLCONF = "seismic_site.urls" - - TEMPLATES = [ - { - "BACKEND": "django.template.backends.django.DjangoTemplates", - "APP_DIRS": True, - "DIRS": [os.path.join(BASE_DIR, "templates")], - "OPTIONS": { - "context_processors": [ - "django.template.context_processors.debug", - "django.template.context_processors.request", - "django.contrib.auth.context_processors.auth", - "django.contrib.messages.context_processors.messages", - ] - }, - } - ] - - WSGI_APPLICATION = "seismic_site.wsgi.application" - - # Database - # https://docs.djangoproject.com/en/2.2/ref/settings/#databases - - DATABASES = values.DatabaseURLValue() - - DEFAULT_AUTO_FIELD = "django.db.models.AutoField" - - # Password validation - # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators - - AUTH_PASSWORD_VALIDATORS = [ - {"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"}, # noqa - {"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"}, # noqa - {"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"}, # noqa - {"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"}, # noqa - ] - - # Internationalization - # https://docs.djangoproject.com/en/2.2/topics/i18n/ - - LANGUAGE_CODE = values.Value(default="en-us") - TIME_ZONE = "Europe/Bucharest" - USE_I18N = True - USE_L10N = True - USE_TZ = True - - LANGUAGES = [("en", _("English")), ("ro", _("Romanian"))] - - # Static files (CSS, JavaScript, Images) - # https://docs.djangoproject.com/en/2.2/howto/static-files/ - - STATIC_URL = "/static/" - STATIC_ROOT = os.path.join(BASE_DIR, "static") - STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" - - MEDIA_URL = "/media/" - MEDIA_ROOT = os.path.join(BASE_DIR, "./public/media") - - LOCALE_PATHS = [os.path.join(BASE_DIR, "./locale")] - - CKEDITOR_UPLOAD_PATH = "uploads/" - - REST_FRAMEWORK = { - # Use Django's standard `django.contrib.auth` permissions, - # or allow read-only access for unauthenticated users. - "DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly"], - "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema", - } - - TRIGRAM_SIMILARITY_THRESHOLD = 0.1 - - SPECTACULAR_SETTINGS = { - "SWAGGER_UI_SETTINGS": {"url": "/api/v1/schema"}, - } - - HERE_MAPS_API_KEY = os.getenv("HERE_MAPS_API_KEY") - HERE_MAPS = {"api_key": HERE_MAPS_API_KEY} - - -class Dev(Base): - DEBUG = True - ALLOWED_HOSTS = ["*"] - CORS_ORIGIN_ALLOW_ALL = True - - SECRET_KEY = "secret" - SITE_URL = "http://localhost:8000" - EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" - - -class Test(Base): - DEBUG = True - SECRET_KEY = "secret" - SITE_URL = "http://localhost" - EMAIL_BACKEND = "django.core.mail.backends.dummy.EmailBackend" - DATABASES = { - "default": { - "ENGINE": "django.db.backends.sqlite3", - "NAME": "/tmp/test.db", - } - } - - -class Prod(Base): - DEBUG = False - ALLOWED_HOSTS = values.ListValue(default=[".code4.ro"]) - CORS_ALLOWED_ORIGINS = values.ListValue(default=[".code4.ro"]) - CORS_ALLOWED_ORIGIN_REGEXES = values.ListValue(default=["*.code4.ro"]) - - EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" - EMAIL_USE_TLS = True - EMAIL_HOST = values.Value(default="smtp.gmail.com") - EMAIL_PORT = 587 - EMAIL_HOST_USER = values.Value() - EMAIL_HOST_PASSWORD = values.Value() - - DEFAULT_FROM_EMAIL = values.EmailValue(default="noreply@code4.ro") diff --git a/api/blog/migrations/__init__.py b/api/seismic_site/settings/__init__.py similarity index 100% rename from api/blog/migrations/__init__.py rename to api/seismic_site/settings/__init__.py diff --git a/api/seismic_site/settings/base.py b/api/seismic_site/settings/base.py new file mode 100644 index 00000000..d8d029cc --- /dev/null +++ b/api/seismic_site/settings/base.py @@ -0,0 +1,491 @@ +""" +Django settings for the project. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.2/ref/settings/ +""" + +import os +from typing import Any, Dict, List + +import environ +from django.utils.translation import gettext_lazy as _ + +env = environ.Env( + # set casting, default value + DEBUG=(bool, False), + ENVIRONMENT=(str, "production"), + ENABLE_DEBUG_TOOLBAR=(bool, False), + LANGUAGE_CODE=(str, "en"), + NO_REPLY_EMAIL=(str, "noreply@code4.ro"), + DEFAULT_FROM_EMAIL=(str, "noreply@code4.ro"), + HERE_MAPS_API_KEY=(str, ""), + DATA_UPLOAD_MAX_NUMBER_FIELDS=(int, 1000), + # hosts and origins + ALLOWED_HOSTS=(list, []), + CSRF_TRUSTED_ORIGINS=(list, []), + CORS_ALLOWED_ORIGINS=(list, []), + CORS_ALLOWED_ORIGIN_REGEXES=(list, []), + # aws settings + USE_S3=(bool, False), + AWS_ACCESS_KEY_ID=(str, ""), + AWS_SECRET_ACCESS_KEY=(str, ""), + AWS_STORAGE_BUCKET_NAME=(str, ""), + AWS_SUBDOMAIN=(str, "s3.amazonaws.com"), + AWS_S3_REGION_NAME=(str, ""), + BACKGROUND_WORKERS=(int, 1), +) + +DATA_UPLOAD_MAX_NUMBER_FIELDS = env.int("DATA_UPLOAD_MAX_NUMBER_FIELDS") + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../..") + +DEBUG = TEMPLATE_DEBUG = env("DEBUG") + +ALLOWED_HOSTS: List[str] = env.list("ALLOWED_HOSTS") +CORS_ORIGIN_ALLOW_ALL = False + +CSRF_TRUSTED_ORIGINS: List[str] = env.list("CSRF_TRUSTED_ORIGINS") + +INSTALLED_APPS = [ + "jazzmin", + # django apps + "django.contrib.admin", + "django.contrib.auth", + "django.contrib.contenttypes", + "django.contrib.sessions", + "django.contrib.messages", + "django.contrib.staticfiles", + "django.contrib.sites", + "django.contrib.sitemaps", + "django.contrib.humanize", + "django.contrib.postgres", + # third-party apps + "rest_framework", + "storages", + "corsheaders", + "django_q", + # project apps + "utils", + "buildings", + "static_custom", + # api documentation + "drf_spectacular", +] + +MIDDLEWARE = [ + "django.middleware.security.SecurityMiddleware", + "corsheaders.middleware.CorsMiddleware", + "whitenoise.middleware.WhiteNoiseMiddleware", + "django.contrib.sessions.middleware.SessionMiddleware", + "django.middleware.locale.LocaleMiddleware", + "django.middleware.common.CommonMiddleware", + "django.middleware.csrf.CsrfViewMiddleware", + "django.contrib.auth.middleware.AuthenticationMiddleware", + "django.contrib.messages.middleware.MessageMiddleware", + "django.middleware.clickjacking.XFrameOptionsMiddleware", +] + +SITE_ID = 1 + +ENABLE_DEBUG_TOOLBAR = env.bool("ENABLE_DEBUG_TOOLBAR") + +ROOT_URLCONF = "seismic_site.urls" + +TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + "APP_DIRS": True, + "DIRS": [os.path.join(BASE_DIR, "templates")], + "OPTIONS": { + "context_processors": [ + "django.template.context_processors.debug", + "django.template.context_processors.request", + "django.contrib.auth.context_processors.auth", + "django.contrib.messages.context_processors.messages", + ] + }, + } +] + +WSGI_APPLICATION = "seismic_site.wsgi.application" + +# Database +# https://docs.djangoproject.com/en/3.2/ref/settings/#databases + +if env("ENVIRONMENT") == "test": + DATABASES = { + "default": { + "ENGINE": "django.db.backends.sqlite3", + "NAME": "/tmp/test.db", # noqa + } + } +else: + DATABASES = { + "ENGINE": "django.db.backends.postgresql", + "USER": env("POSTGRES_USER"), + "PASSWORD": env("POSTGRES_PASSWORD"), + "NAME": env("POSTGRES_DB"), + "HOST": env("POSTGRES_HOST"), + "PORT": env("POSTGRES_PORT"), + } + +DEFAULT_AUTO_FIELD = "django.db.models.AutoField" + +# Password validation +# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + {"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"}, # noqa + {"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"}, # noqa + {"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"}, # noqa + {"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"}, # noqa +] + +CACHES = { + "default": { + "BACKEND": "django.core.cache.backends.db.DatabaseCache", + "LOCATION": "seismic_cache_table", + "TIMEOUT": 60 * 60 * 24, # 24 hours + }, + "memory": { + "BACKEND": "django.core.cache.backends.locmem.LocMemCache", + "LOCATION": "unique-snowflake", + "TIMEOUT": 60 * 5, # 5 minutes + }, +} + +# Internationalization +# https://docs.djangoproject.com/en/3.2/topics/i18n/ + +LANGUAGE_CODE = env("LANGUAGE_CODE") +TIME_ZONE = "Europe/Bucharest" +USE_I18N = True +USE_L10N = True +USE_TZ = True + +LANGUAGES = [ + ("ro", _("Romanian")), + ("en", _("English")), +] + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.2/howto/static-files/ + +USE_S3 = ( + env.bool("USE_S3") and env("AWS_ACCESS_KEY_ID") and env("AWS_SECRET_ACCESS_KEY") and env("AWS_STORAGE_BUCKET_NAME") +) + +if USE_S3: + # aws settings + AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID") + AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY") + AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME") + + AWS_SUBDOMAIN = env("AWS_SUBDOMAIN") + + AWS_DEFAULT_ACL = None + AWS_S3_REGION_NAME = env("AWS_S3_REGION_NAME") + AWS_S3_CUSTOM_DOMAIN = f"{AWS_STORAGE_BUCKET_NAME}.{AWS_SUBDOMAIN}" + AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"} + AWS_S3_FILE_OVERWRITE = True + + DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage" + + # s3 public media settings + PUBLIC_MEDIA_LOCATION = "media" + MEDIA_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/{PUBLIC_MEDIA_LOCATION}/" + + # s3 private media settings + PRIVATE_MEDIA_LOCATION = "private" +else: + PRIVATE_FILE_STORAGE = "django.core.files.storage.FileSystemStorage" + MEDIA_URL = "/media/" + MEDIA_ROOT = os.path.join(BASE_DIR, "./public/media") + +STATIC_URL = "/static/" +STATIC_ROOT = os.path.join(BASE_DIR, "static") +STATICFILES_STORAGE = "whitenoise.storage.CompressedStaticFilesStorage" + +LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),) + +REST_FRAMEWORK = { + # Use Django's standard `django.contrib.auth` permissions + # or allow read-only access for unauthenticated users. + "DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly"], + "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema", +} + +TRIGRAM_SIMILARITY_THRESHOLD = 0.1 + +SPECTACULAR_SETTINGS = { + "VERSION": "0.1.0", + "SWAGGER_UI_SETTINGS": {"url": "/api/v1/schema"}, +} + +HERE_MAPS_API_KEY = env("HERE_MAPS_API_KEY") +HERE_MAPS = {"api_key": HERE_MAPS_API_KEY} + +ACCEPTED_IMAGE_TYPES = { + "jpeg": "JPEG", + "jpg": "JPEG", + "png": "PNG", +} +COUNTIES_SHORTNAME = { + "Arad": "AR", + "Arges": "AG", + "Argeș": "AG", + "Bacau": "BC", + "Bacău": "BC", + "Bihor": "BH", + "Bistrita-Nasaud": "BN", + "Bistrița-Năsăud": "BN", + "Botosani": "BT", + "Botoșani": "BT", + "Brasov": "BV", + "Brașov": "BV", + "Braila": "BR", + "Brăila": "BR", + "Bucharest": "B", + "Bucuresti": "B", + "București": "B", + "Buzau": "BZ", + "Buzău": "BZ", + "Calarasi": "CL", + "Caras-Severin": "CS", + "Caraș-Severin": "CS", + "Cluj": "CJ", + "Constanta": "CT", + "Constanța": "CT", + "Covasna": "CV", + "Călărași": "CL", + "Dambovita": "DB", + "Dolj": "DJ", + "Dâmbovița": "DB", + "Galati": "GL", + "Galați": "GL", + "Giurgiu": "GR", + "Gorj": "GJ", + "Harghita": "HR", + "Hunedoara": "HD", + "Ialomita": "IL", + "Ialomița": "IL", + "Iasi": "IS", + "Iași": "IS", + "Ilfov": "IF", + "Maramures": "MM", + "Maramureș": "MM", + "Mehedinti": "MH", + "Mehedinți": "MH", + "Mures": "MS", + "Mureș": "MS", + "Neamt": "NT", + "Neamț": "NT", + "Olt": "OT", + "Prahova": "PH", + "Salaj": "SJ", + "Satu Mare": "SM", + "Sibiu": "SB", + "Suceava": "SV", + "Sălaj": "SJ", + "Teleorman": "TR", + "Timis": "TM", + "Timiș": "TM", + "Tulcea": "TL", + "Valcea": "VL", + "Vaslui": "VS", + "Vrancea": "VN", + "Vâlcea": "VL", +} + +QUALITY_DEFINITIONS = {"JPEG": 85, "PNG": 80} +ALLOWED_IMAGES_LIMIT = 3 +IMAGE_RESIZE = 400 + +DEFAULT_PEOPLE_UNDER_RISK: int = 14245 + +# django-jazzmin +# ------------------------------------------------------------------------------- +# django-jazzmin - https://django-jazzmin.readthedocs.io/configuration/ + +JAZZMIN_SETTINGS: Dict[str, Any] = { + # title of the window + "site_title": _("Acasă în Siguranță"), + # Title on the brand, and the login screen (19 chars max) + "site_header": _("Acasă în Siguranță"), + # square logo to use for your site, must be present in static files, used for favicon and brand on top left + "site_logo": "jazzmin/img/logomark-app.svg", + "site_logo_short": "jazzmin/img/logomark-app.svg", + "site_icon": "jazzmin/img/logomark-app.svg", + # "site_logo_classes": "site-logo", + # Welcome text on the login screen + "welcome_sign": "", + # Copyright on the footer + "copyright": "Commit Global", + # The model admin to search from the search bar, search bar omitted if excluded + # "search_model": "donors.Donor", + # The field name on the user model that contains avatar image + "user_avatar": None, + ############ + # Top Menu # + ############ + # Links to put along the top menu + "topmenu_links": [ + # Url that gets reversed (Permissions can be added) + {"name": "Home", "url": "admin:index", "permissions": ["auth.view_user"]}, + ], + ############# + # User Menu # + ############# + # Additional links to include in the user menu on the top right (the "app" url type is not allowed) + "usermenu_links": [ + {"model": "auth.user", "new_window": False}, + ], + ############# + # Side Menu # + ############# + # Whether to display the side menu + "show_sidebar": True, + # Whether to auto expand the menu + "navigation_expanded": True, + # Hide these apps when generating the side menu e.g (auth) + "hide_apps": ["pages", "sites"], + # Hide these models when generating side menu (e.g auth.user) + "hide_models": [], + # List of apps (and/or models) to the base side menu ordering off of (does not need to contain all apps/models) + "order_with_respect_to": [ + "buildings", + "buildings.building", + "buildings.buildingworkperformed", + "buildings.buildingproximalutilities", + "buildings.imagefile", + "buildings.datafile", + "buildings.statistic", + "auth", + "auth.user", + "auth.group", + ], + # Custom icons for side menu apps/models + # See https://fontawesome.com/v5/search?m=free + # for a list of icon classes + "icons": { + "buildings.building": "fas fa-house-damage", + "buildings.buildingworkperformed": "fas fa-tools", + "buildings.buildingproximalutilities": "fas fa-city", + "buildings.imagefile": "fas fa-images", + "buildings.datafile": "fas fa-database", + "buildings.statistic": "fas fa-table", + "auth.group": "fas fa-users", + "auth.user": "fas fa-user", + }, + # Icons that are used when one is not manually specified + "default_icon_parents": "fas fa-chevron-circle-right", + "default_icon_children": "fas fa-circle", + ################# + # Related Modal # + ################# + # Use modals instead of popups + "related_modal_active": False, + ############# + # UI Tweaks # + ############# + # Relative paths to custom CSS/JS scripts (must be present in static files) + "custom_css": "jazzmin/css/admin.css", + "custom_js": "", + # Whether to show the UI customizer on the sidebar + "show_ui_builder": DEBUG, + ############### + # Change view # + ############### + # Render out the change view as a single form, or in tabs, current options are + # - single + # - horizontal_tabs (default) + # - vertical_tabs + # - collapsible + # - carousel + "changeform_format": "single", + # override change forms on a per modeladmin basis + "changeform_format_overrides": { + "auth.user": "collapsible", + "auth.group": "vertical_tabs", + }, + # Add a language dropdown into the admin + "language_chooser": True, +} + +if DEBUG: + JAZZMIN_SETTINGS["usermenu_links"].extend( + [ + { + "name": "Configuration", + "url": "https://django-jazzmin.readthedocs.io/configuration/", + "new_window": True, + "icon": "fas fa-wrench", + }, + { + "name": "Support", + "url": "https://github.com/farridav/django-jazzmin/issues", + "new_window": True, + "icon": "fas fa-question", + }, + ] + ) + +JAZZMIN_UI_TWEAKS = { + "navbar_small_text": False, + "footer_small_text": False, + "body_small_text": False, + "brand_small_text": False, + "brand_colour": False, + "accent": "accent-danger", + "navbar": "navbar-white navbar-light", + "no_navbar_border": False, + "navbar_fixed": True, + "layout_boxed": False, + "footer_fixed": False, + "sidebar_fixed": True, + "sidebar": "sidebar-dark-danger", + "sidebar_nav_small_text": False, + "sidebar_disable_expand": False, + "sidebar_nav_child_indent": False, + "sidebar_nav_compact_style": False, + "sidebar_nav_legacy_style": False, + "sidebar_nav_flat_style": False, + "theme": "default", + "dark_mode_theme": None, + "button_classes": { + "primary": "btn-outline-primary", + "secondary": "btn-outline-secondary", + "info": "btn-outline-info", + "warning": "btn-outline-warning", + "danger": "btn-outline-danger", + "success": "btn-outline-success", + }, +} + + +# Django Q2 +# https://django-q2.readthedocs.io/en/stable/brokers.html + +Q_CLUSTER = { + "name": "seismic", + "workers": env.int("BACKGROUND_WORKERS"), + "recycle": 100, + "timeout": 900, # A task must finish in less than 15 minutes + "retry": 1200, # Retry an unfinished tasks after 20 minutes + "ack_failures": True, + "max_attempts": 2, + "compress": True, + "save_limit": 200, + "queue_limit": 4, + "cpu_affinity": 1, + "label": "Django Q2", + "orm": "default", + "poll": 2, + "guard_cycle": 3, + "catch_up": False, +} diff --git a/api/seismic_site/settings/development.py b/api/seismic_site/settings/development.py new file mode 100644 index 00000000..fca28a5d --- /dev/null +++ b/api/seismic_site/settings/development.py @@ -0,0 +1,25 @@ +from seismic_site.settings.base import * + +DEBUG = True +ALLOWED_HOSTS = ["*"] +CORS_ORIGIN_ALLOW_ALL = True +SECRET_KEY = "secret" + +EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" + +INSTALLED_APPS = ["whitenoise.runserver_nostatic"] + INSTALLED_APPS + +if DEBUG and env("ENABLE_DEBUG_TOOLBAR"): + INSTALLED_APPS += ["debug_toolbar", "django_extensions"] + MIDDLEWARE.insert(1, "debug_toolbar.middleware.DebugToolbarMiddleware") + + def show_toolbar(_): + return True + + DEBUG_TOOLBAR_CONFIG = { + "SHOW_TOOLBAR_CALLBACK": show_toolbar, + } + +if not DEBUG: + STATIC_ROOT = os.path.join(BASE_DIR, "static") + STATICFILES_DIRS = [] diff --git a/api/seismic_site/settings/production.py b/api/seismic_site/settings/production.py new file mode 100644 index 00000000..ab75b002 --- /dev/null +++ b/api/seismic_site/settings/production.py @@ -0,0 +1,22 @@ +from typing import List + +from seismic_site.settings.base import * + +SECRET_KEY = env.str("SECRET_KEY") # noqa + +EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend" +EMAIL_USE_TLS = True +EMAIL_CONFIG = env.email_url("EMAIL_URL", default="smtp://user:password@localhost:25") +vars().update(EMAIL_CONFIG) + +NO_REPLY_EMAIL = env("NO_REPLY_EMAIL") +DEFAULT_FROM_EMAIL = env("DEFAULT_FROM_EMAIL") + +STATIC_ROOT = os.path.join(BASE_DIR, "static") +STATICFILES_DIRS = [] + +CSRF_TRUSTED_ORIGINS: List[str] = env.list("CSRF_TRUSTED_ORIGINS") +CORS_ALLOWED_ORIGINS: List[str] = env.list("CORS_ALLOWED_ORIGINS") +CORS_ALLOWED_ORIGIN_REGEXES: List[str] = env.list("CORS_ALLOWED_ORIGIN_REGEXES") + +CORS_ORIGIN_ALLOW_ALL = False diff --git a/api/seismic_site/settings/test.py b/api/seismic_site/settings/test.py new file mode 100644 index 00000000..38a42a57 --- /dev/null +++ b/api/seismic_site/settings/test.py @@ -0,0 +1,9 @@ +from seismic_site.settings.base import * + +DEBUG = True +SECRET_KEY = "test_secret" +SITE_URL = "http://localhost" + +EMAIL_BACKEND = "django.core.mail.backends.dummy.EmailBackend" + +TEST_RUNNER = "tests.runner.PytestTestRunner" diff --git a/api/seismic_site/urls.py b/api/seismic_site/urls.py index f384f993..0f0e881f 100644 --- a/api/seismic_site/urls.py +++ b/api/seismic_site/urls.py @@ -1,28 +1,26 @@ -from blog.views import PostViewSet, TagViewSet -from buildings.views import BuildingViewSet, statistics from django.conf import settings from django.conf.urls.i18n import i18n_patterns from django.conf.urls.static import static from django.contrib import admin from django.contrib.auth import views as auth_views from django.urls import include, path -from pages.views import PagesViewSet -from rest_framework import routers from drf_spectacular.views import ( SpectacularAPIView, SpectacularSwaggerView, ) +from rest_framework import routers + +from buildings.views import BuildingViewSet, ProximalUtilitiesViewSet, WorkPerformedViewSet, statistics -admin.site.site_title = "Seismic Risk Admin" -admin.site.site_header = "Seismic Risk Admin" -admin.site.index_title = "Seismic Risk Admin" -admin.site.site_url = settings.SITE_URL +admin_site_string = "Acasă în Siguranță" +admin.site.site_title = admin_site_string +admin.site.site_header = admin_site_string +admin.site.index_title = admin_site_string router = routers.DefaultRouter() router.register(r"buildings", BuildingViewSet, basename="buildings") -router.register(r"pages", PagesViewSet, basename="pages") -router.register(r"posts", PostViewSet, basename="posts") -router.register(r"tags", TagViewSet, basename="tags") +router.register(r"proximal_utilities", ProximalUtilitiesViewSet, basename="building_proximal_utilities") +router.register(r"work_performed", WorkPerformedViewSet, basename="building_work_performed") urlpatterns = ( @@ -49,7 +47,6 @@ name="password_reset_complete", ), path("admin/", admin.site.urls), - path("ckeditor/", include("ckeditor_uploader.urls")), ) + [ # URL patterns which do not use a language prefix @@ -65,3 +62,10 @@ ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) ) + +if settings.DEBUG and settings.ENABLE_DEBUG_TOOLBAR: + import debug_toolbar + + urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns + + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/api/seismic_site/wsgi.py b/api/seismic_site/wsgi.py index 18c29c6b..dc407c7e 100644 --- a/api/seismic_site/wsgi.py +++ b/api/seismic_site/wsgi.py @@ -1,8 +1,7 @@ import os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "seismic_site.settings") -os.environ.setdefault("DJANGO_CONFIGURATION", "Prod") +from django.core.wsgi import get_wsgi_application -from configurations.wsgi import get_wsgi_application # noqa +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "seismic_site.settings.development") application = get_wsgi_application() diff --git a/api/setup.cfg b/api/setup.cfg deleted file mode 100644 index e10d125e..00000000 --- a/api/setup.cfg +++ /dev/null @@ -1,45 +0,0 @@ -[flake8] -max-line-length = 80 -extend-ignore = E203 -exclude = - */migrations/*.py - -[coverage:run] -branch = True -omit = - */migrations/* - */urls.py - */admin.py - seismic_site/* - manage.py - wait_for_db.py - -[coverage:report] -# fail_under = 90 -precision = 2 -sort = Name -exclude_lines = - def __repr__ - def __str__ -show_missing = True - -[tool:pytest] -env = - DJANGO_SETTINGS_MODULE=seismic_site.settings - DJANGO_CONFIGURATION=Test - -testpaths = - ./tests - -python_files = - tests.py - test_*.py - *_tests.py - -addopts = - -ra - --tb=native - --cov-config=.coveragerc --cov=. --cov-report=term --no-cov-on-fail - -filterwarnings = - ignore:Coverage disabled via --no-cov switch! \ No newline at end of file diff --git a/api/start_gunicorn.sh b/api/start_gunicorn.sh index ceef286d..937e1cc6 100755 --- a/api/start_gunicorn.sh +++ b/api/start_gunicorn.sh @@ -2,4 +2,4 @@ ./manage.py collectstatic --no-input -gunicorn -b :${GUNICORN_PORT} -w ${GUNICORN_WORKERS} seismic_site.wsgi:application +gunicorn -b :"${GUNICORN_PORT}" -w "${GUNICORN_WORKERS}" seismic_site.wsgi:application diff --git a/api/pages/migrations/__init__.py b/api/static_custom/__init__.py similarity index 100% rename from api/pages/migrations/__init__.py rename to api/static_custom/__init__.py diff --git a/api/static_custom/apps.py b/api/static_custom/apps.py new file mode 100644 index 00000000..0ba25b47 --- /dev/null +++ b/api/static_custom/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class StaticCustomConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "static_custom" diff --git a/api/static_custom/static/jazzmin/img/logo-app.svg b/api/static_custom/static/jazzmin/img/logo-app.svg new file mode 100644 index 00000000..a27f5974 --- /dev/null +++ b/api/static_custom/static/jazzmin/img/logo-app.svg @@ -0,0 +1 @@ + diff --git a/api/static_custom/static/jazzmin/img/logo-commitglobal.svg b/api/static_custom/static/jazzmin/img/logo-commitglobal.svg new file mode 100644 index 00000000..8c635258 --- /dev/null +++ b/api/static_custom/static/jazzmin/img/logo-commitglobal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/api/static_custom/static/jazzmin/img/logomark-app.svg b/api/static_custom/static/jazzmin/img/logomark-app.svg new file mode 100644 index 00000000..b3c27ba3 --- /dev/null +++ b/api/static_custom/static/jazzmin/img/logomark-app.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/api/templates/admin/buildings/building/change_form.html b/api/templates/admin/buildings/building/change_form.html index 8d330edd..61116de9 100644 --- a/api/templates/admin/buildings/building/change_form.html +++ b/api/templates/admin/buildings/building/change_form.html @@ -15,10 +15,10 @@ {{ block.super }} {{ HERE_MAPS|json_script:"here-maps-config" }} {% endblock %} -{% block userlinks %}{% endblock %} \ No newline at end of file +{% block userlinks %}{% endblock %} diff --git a/api/templates/admin/buildings/building/change_list.html b/api/templates/admin/buildings/building/change_list.html index df426c23..17be14de 100644 --- a/api/templates/admin/buildings/building/change_list.html +++ b/api/templates/admin/buildings/building/change_list.html @@ -10,10 +10,10 @@ {{ block.super }} {{ HERE_MAPS|json_script:"here-maps-config" }} {% endblock %} -{% block userlinks %}{% endblock %} \ No newline at end of file +{% block userlinks %}{% endblock %} diff --git a/api/tests/runner.py b/api/tests/runner.py new file mode 100644 index 00000000..0fdd638b --- /dev/null +++ b/api/tests/runner.py @@ -0,0 +1,36 @@ +class PytestTestRunner: + """ + Runs pytest to discover and run tests. + """ + + def __init__(self, verbosity=1, failfast=False, keepdb=False, **kwargs): + self.verbosity = verbosity + self.failfast = failfast + self.keepdb = keepdb + + @classmethod + def add_arguments(cls, parser): + parser.add_argument("--keepdb", action="store_true", help="Preserves the test DB between runs.") + + def run_tests(self, test_labels): + """ + Run pytest and return the exitcode. + + It translates some of Django's test command option to pytest's. + """ + import pytest + + argv = [] + if self.verbosity == 0: + argv.append("--quiet") + if self.verbosity == 2: + argv.append("--verbose") + if self.verbosity == 3: + argv.append("-vv") + if self.failfast: + argv.append("--exitfirst") + if self.keepdb: + argv.append("--reuse-db") + + argv.extend(test_labels) + return pytest.main(argv) diff --git a/api/tests/test_blog_api.py b/api/tests/test_blog_api.py deleted file mode 100644 index 4e601df0..00000000 --- a/api/tests/test_blog_api.py +++ /dev/null @@ -1,59 +0,0 @@ -import pytest - -from blog.models import Post -from blog.views import PostsPagination - -base_url = "/api/v1/posts" - - -@pytest.mark.django_db -def test_post_details_get(basic_post_data, api_client, test_user): - basic_post_data["author_id"] = test_user.id - post_obj = Post.objects.create(**basic_post_data) - - response = api_client.get(f"{base_url}/{post_obj.slug}/") - - assert response.status_code == 200 - assert response.data["slug"] == basic_post_data["slug"] - - -@pytest.mark.django_db -def test_post_post_forbidden(basic_post_data, api_client): - response = api_client.post(f"{base_url}/", basic_post_data, format="json") - assert response.status_code == 403 - - -@pytest.mark.django_db -def test_post_delete_forbidden(basic_post_data, api_client): - url = f"{base_url}/1/" - - response = api_client.delete(url) - assert response.status_code == 403 - - -@pytest.fixture -def basic_post_data(): - from django.utils import timezone - - return { - "title": "Post title", - "slug": "post1", - "text": "Contents", - "is_visible": True, - "published": timezone.now(), - } - - -@pytest.mark.django_db -def test_post_pagination(basic_post_data, api_client, test_user): - for i in range(PostsPagination.max_limit + 1): - basic_post_data["slug"] = str(i) - basic_post_data["author_id"] = test_user.id - Post.objects.create(**basic_post_data) - - custom_limit = PostsPagination.default_limit // 2 - custom_offset = PostsPagination.max_limit // 2 - response = api_client.get(f"{base_url}/?offset={custom_offset}&limit={custom_limit}") - assert response.status_code == 200 - assert len(response.data["results"]) == custom_limit - assert response.data["results"][0]["slug"] == str(custom_offset) diff --git a/api/tests/test_buildings_api.py b/api/tests/test_buildings_api.py index 6b378dd1..e2a1d072 100644 --- a/api/tests/test_buildings_api.py +++ b/api/tests/test_buildings_api.py @@ -1,14 +1,25 @@ import random import string +from collections import namedtuple import pytest +from django.conf import settings -from buildings.models import Building +from buildings.models import Building, ImageFile from buildings.serializers import BuildingListSerializer base_url = "/api/v1/buildings" +@pytest.mark.django_db +def test_image_resize(): + height, width = (800, 1600) + image = namedtuple("Image", "size") + im = image((width, height)) + resized_w, resized_h = ImageFile.image_resize_dimensions(im) + assert (resized_h, resized_w) == (settings.IMAGE_RESIZE / 2, settings.IMAGE_RESIZE) + + @pytest.mark.django_db def test_building_list_get_if_status_is_approved(approved_building_data, api_client): for _ in range(3): @@ -24,15 +35,15 @@ def test_building_list_get_if_status_is_approved(approved_building_data, api_cli @pytest.mark.django_db -def test_building_details_get_if_status_is_approved(approved_building_data, api_client): +def test_building_details_get_if_status_is_approved(approved_building_data, approved_building_return_data, api_client): building_obj = Building.objects.create(**approved_building_data) url = f"{base_url}/{building_obj.general_id}/" response = api_client.get(url) assert response.status_code == 200 - for key in approved_building_data.keys(): - assert response.data[key] == approved_building_data[key] + for key in approved_building_return_data.keys(): + assert response.data[key] == approved_building_return_data[key] @pytest.mark.django_db @@ -99,7 +110,7 @@ def basic_building_data(): "risk_category": "U1", "county": "Bucuresti", "street_number": "12", - "locality": "2", + "locality": "Sector 2", "status": 1, } @@ -111,6 +122,15 @@ def approved_building_data(): return basic_data +@pytest.fixture +def approved_building_return_data(): + basic_data = basic_building_data() + basic_data["status"] = 1 + county = basic_data.pop("county") + basic_data["county_code"] = settings.COUNTIES_SHORTNAME.get(county, county) + return basic_data + + @pytest.fixture def pending_building_data(): basic_data = basic_building_data() diff --git a/api/tests/test_pages_api.py b/api/tests/test_pages_api.py deleted file mode 100644 index e9efa942..00000000 --- a/api/tests/test_pages_api.py +++ /dev/null @@ -1,51 +0,0 @@ -import pytest - -from pages.models import Page - -base_url = "/api/v1/pages/" - - -@pytest.mark.django_db -def test_page_details_get(basic_page_data, api_client): - Page.objects.create(**basic_page_data) - page1 = Page.objects.get(slug="pg1") - - url = f"{base_url}pg1/" - - response = api_client.get(url) - assert response.status_code == 200 - assert response.data["slug"] == page1.slug - - -@pytest.mark.django_db -def test_page_slugify(basic_page_data, api_client): - del basic_page_data["slug"] - basic_page_data["title"] = "This is a title" - - pg1 = Page.objects.create(**basic_page_data) - pg2 = Page.objects.create(**basic_page_data) - pg3 = Page.objects.create(**basic_page_data) - - assert pg1.slug == "this-is-a-title" - assert pg2.slug == "this-is-a-title-1" - assert pg3.slug == "this-is-a-title-2" - - -@pytest.mark.django_db -def test_page_post_forbidden(basic_page_data, api_client): - response = api_client.post(base_url, basic_page_data, format="json") - assert response.status_code == 403 - - -@pytest.mark.django_db -def test_page_delete_forbidden(basic_page_data, api_client): - url = f"{base_url}pg1/" - - response = api_client.delete(url) - assert response.status_code == 403 - - -@pytest.fixture -def basic_page_data(): - # Required fields for Page object - return {"title": "Page title", "slug": "pg1", "content": "Contents"} diff --git a/api/blog/urls.py b/api/utils/__init__.py similarity index 100% rename from api/blog/urls.py rename to api/utils/__init__.py diff --git a/api/utils/apps.py b/api/utils/apps.py new file mode 100644 index 00000000..4faf4f6f --- /dev/null +++ b/api/utils/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class UtilsConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "utils" diff --git a/api/utils/management/commands/seed_superuser.py b/api/utils/management/commands/seed_superuser.py new file mode 100644 index 00000000..05437c07 --- /dev/null +++ b/api/utils/management/commands/seed_superuser.py @@ -0,0 +1,67 @@ +import logging + +import environ +from django.contrib.auth import get_user_model +from django.core.management.base import BaseCommand + +logger = logging.getLogger(__name__) + + +class Command(BaseCommand): + help = "Command to create a superuser" + + def add_arguments(self, parser): + parser.add_argument( + "--email", + type=str, + help="Email of the superuser", + required=True, + ) + parser.add_argument( + "--username", + type=str, + help="Username of the superuser (default: email)", + required=False, + ) + parser.add_argument( + "--first_name", + type=str, + help="First name of the superuser", + required=False, + ) + parser.add_argument( + "--last_name", + type=str, + help="Last name of the superuser", + required=False, + ) + + def handle(self, *args, **kwargs): + user_model = get_user_model() + env = environ.Env() + + admin_email = kwargs.get("email") + admin_username = kwargs.get("username") or admin_email + admin_first_name = kwargs.get("first_name") or "" + admin_last_name = kwargs.get("last_name") or "" + + if user_model.objects.filter(email=admin_email).exists(): + logger.info("Super admin already exists") + return 0 + + superuser = user_model( + email=admin_email, + username=admin_username, + first_name=admin_first_name, + last_name=admin_last_name, + is_active=True, + is_superuser=True, + is_staff=True, + ) + superuser.set_password(env.str("DJANGO_ADMIN_PASSWORD")) + + superuser.save() + + logger.info("Super admin created successfully") + + return 0 diff --git a/client/.eslintrc.json b/client/.eslintrc.json index 2a918bc7..e33128a4 100644 --- a/client/.eslintrc.json +++ b/client/.eslintrc.json @@ -3,21 +3,65 @@ "browser": true, "jest": true }, - "plugins": ["prettier"], - "extends": ["airbnb-base", "airbnb/rules/react", "plugin:prettier/recommended", "prettier"], - "parser": "babel-eslint", - "ignorePatterns": ["serviceWorker.js", "node_modules/", "src/locales/"], + "plugins": [ + "prettier" + ], + "extends": [ + "airbnb-base", + "airbnb/rules/react", + "plugin:prettier/recommended", + "prettier", + "plugin:storybook/recommended" + ], + "parser": "@babel/eslint-parser", + "ignorePatterns": [ + "serviceWorker.js", + "node_modules/", + "src/locales/" + ], "rules": { + "react/function-component-definition": "off", "react/jsx-props-no-spreading": 0, - "react/no-unescaped-entities": ["error", { "forbid": [">", "}"] }], + "react/no-unescaped-entities": [ + "error", + { + "forbid": [ + ">", + "}" + ] + } + ], "react/sort-comp": 0, "react/prop-types": 0, "linebreak-style": 0, "react/destructuring-assignment": 0, - "no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], + "no-plusplus": [ + "error", + { + "allowForLoopAfterthoughts": true + } + ], "react/jsx-one-expression-per-line": 0, "no-return-assign": 0, - "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], + "react/jsx-filename-extension": [ + 1, + { + "extensions": [ + ".js", + ".jsx" + ] + } + ], "no-useless-escape": "off" - } + }, + "overrides": [ + { + "files": [ + "**/*.stories.*" + ], + "rules": { + "import/no-anonymous-default-export": "off" + } + } + ] } diff --git a/client/.nvmrc b/client/.nvmrc new file mode 100644 index 00000000..3c032078 --- /dev/null +++ b/client/.nvmrc @@ -0,0 +1 @@ +18 diff --git a/client/.storybook/main.js b/client/.storybook/main.js index 5854dc69..7658046f 100644 --- a/client/.storybook/main.js +++ b/client/.storybook/main.js @@ -1,27 +1,29 @@ const custom = require("../config-overrides"); - module.exports = { - "stories": [ - "../src/**/*.stories.mdx", - "../src/**/*.stories.js" - ], - "addons": [ - "@storybook/addon-links", - "@storybook/addon-essentials", - { - "name": "@storybook/preset-create-react-app", - "options": { - "craOverrides": { - "fileLoaderExcludes": ["less"] - } + "stories": ["../src/**/*.stories.mdx", "../src/**/*.stories.js"], + "addons": ["@storybook/addon-links", "@storybook/addon-essentials", { + "name": "@storybook/preset-create-react-app", + "options": { + "craOverrides": { + "fileLoaderExcludes": ["less"] } - }, - ], - webpackFinal: (storybookConfig) => { + } + }], + webpackFinal: storybookConfig => { const customConfig = custom(storybookConfig); return { ...storybookConfig, - module: { ...storybookConfig.module, rules: customConfig.module.rules }, + module: { + ...storybookConfig.module, + rules: customConfig.module.rules + } }; + }, + framework: { + name: "@storybook/react-webpack5", + options: {} + }, + docs: { + autodocs: true } -} +}; \ No newline at end of file diff --git a/client/.storybook/preview-body.html b/client/.storybook/preview-body.html similarity index 100% rename from client/.storybook/preview-body.html rename to client/.storybook/preview-body.html diff --git a/client/.storybook/preview.js b/client/.storybook/preview.js index fdf82f4f..7a5ddd39 100644 --- a/client/.storybook/preview.js +++ b/client/.storybook/preview.js @@ -1,4 +1,4 @@ -import 'antd/dist/antd.css'; +import 'antd/dist/reset.css'; import '../src/styles/theme.scss'; import React from 'react'; import { RouterWrapper } from '../src/components/TestUtils'; diff --git a/client/Dockerfile b/client/Dockerfile deleted file mode 100644 index 663b22b7..00000000 --- a/client/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -# base image -FROM node:12-alpine - -# set working directory -WORKDIR /code - -# add `/code/node_modules/.bin` to $PATH -ENV PATH /code/node_modules/.bin:$PATH - -# install and cache app dependencies -COPY package*.json ./ - -COPY . ./ - -COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint -RUN chmod +x /usr/local/bin/docker-entrypoint - -ENTRYPOINT ["docker-entrypoint"] - -# start app -CMD ["npm", "start"] - diff --git a/client/babel.config.json b/client/babel.config.json new file mode 100644 index 00000000..a76b55e0 --- /dev/null +++ b/client/babel.config.json @@ -0,0 +1,25 @@ +{ + "presets": [ + "@babel/preset-env", + [ + "@babel/preset-react", + { + "runtime": "automatic" + } + ] + ], + "plugins": [ + [ + "@babel/plugin-transform-private-property-in-object", + { + "loose": true + } + ], + [ + "@babel/plugin-proposal-private-property-in-object", + { + "loose": true + } + ] + ] +} diff --git a/client/config-overrides.js b/client/config-overrides.js index e66a6d2b..ebbf846f 100644 --- a/client/config-overrides.js +++ b/client/config-overrides.js @@ -1,11 +1,6 @@ -const { override, fixBabelImports, addLessLoader } = require('customize-cra'); +const { override, addLessLoader } = require('customize-cra'); module.exports = override( - fixBabelImports('import', { - libraryName: 'antd', - libraryDirectory: 'es', - style: true, - }), addLessLoader({ lessOptions: { javascriptEnabled: true, diff --git a/client/db.json b/client/db.json index 7c97c33e..8192377c 100644 --- a/client/db.json +++ b/client/db.json @@ -79,7 +79,7 @@ "model": "buildings.building", "pk": 73, "fields": { - "risk_category": "N/A", + "risk_category": "NA", "registration_number": 11, "lat": 44.39556, "lng": 26.156, diff --git a/client/docker-entrypoint.sh b/client/docker-entrypoint old mode 100644 new mode 100755 similarity index 51% rename from client/docker-entrypoint.sh rename to client/docker-entrypoint index 084f55d1..e748afbd --- a/client/docker-entrypoint.sh +++ b/client/docker-entrypoint @@ -2,8 +2,5 @@ NODE_ENV=${NODE_ENV:-production} set -eux -if [ "$NODE_ENV" != 'production' ]; then - npm install -fi exec "$@" diff --git a/client/package-lock.json b/client/package-lock.json index d6b3908e..596f8655 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,2151 +1,2046 @@ { "name": "seismic-app", "version": "0.1.0", - "lockfileVersion": 1, + "lockfileVersion": 3, "requires": true, - "dependencies": { - "@ant-design/colors": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-3.2.2.tgz", - "integrity": "sha512-YKgNbG2dlzqMhA9NtI3/pbY16m3Yl/EeWBRa+lB1X1YaYxHrxNexiQYCLTWO/uDvAjLFMEDU+zR901waBtMtjQ==", - "requires": { - "tinycolor2": "^1.4.1" + "packages": { + "": { + "name": "seismic-app", + "version": "0.1.0", + "dependencies": { + "@ant-design/icons": "^5.1.2", + "@fontsource/source-sans-pro": "^5.0.1", + "@hcaptcha/react-hcaptcha": "^1.8.1", + "@lingui/core": "^3.13.0", + "@lingui/macro": "^3.14.0", + "@lingui/react": "^3.13.0", + "antd": "^5.5.1", + "classnames": "^2.3.2", + "customize-cra": "^1.0.0", + "lodash": "^4.17.21", + "prop-types": "^15.8.1", + "qs": "^6.11.2", + "react": "^18.0.0", + "react-dom": "^18.0.0", + "react-pdf": "^7.0.1", + "react-router-dom": "^5.2.0", + "react-scripts": "^5.0.1", + "storybook": "^7.0.18", + "typescript": "^4.5.4" + }, + "devDependencies": { + "@babel/cli": "^7.21.5", + "@babel/core": "^7.21.8", + "@babel/eslint-parser": "^7.21.8", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", + "@babel/plugin-transform-private-property-in-object": "^7.22.0", + "@babel/preset-env": "^7.22.0", + "@babel/preset-react": "^7.22.0", + "@lingui/babel-preset-react": "^2.9.2", + "@lingui/cli": "^3.12.1", + "@storybook/addon-actions": "^7.0.17", + "@storybook/addon-essentials": "^7.0.17", + "@storybook/addon-links": "^7.0.17", + "@storybook/node-logger": "^7.0.17", + "@storybook/preset-create-react-app": "^7.0.17", + "@storybook/react": "^7.0.17", + "@storybook/react-webpack5": "^7.0.18", + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^14.0.0", + "babel-core": "^7.0.0-bridge.0", + "babel-plugin-macros": "^3.1.0", + "cross-env": "^7.0.3", + "eslint": "^8.41.0", + "eslint-config-airbnb": "^19.0.4", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-storybook": "^0.6.12", + "husky": "^8.0.3", + "less": "^4.1.3", + "less-loader": "^11.1.0", + "lint-staged": "^13.2.2", + "prettier": "^2.8.8", + "react-app-rewired": "^2.2.1", + "sass": "^1.62.1" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz", + "integrity": "sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==", + "dev": true + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@ant-design/create-react-context": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@ant-design/create-react-context/-/create-react-context-0.2.5.tgz", - "integrity": "sha512-1rMAa4qgP2lfl/QBH9i78+Gjxtj9FTMpMyDGZsEBW5Kih72EuUo9958mV8PgpRkh4uwPSQ7vVZWXeyNZXVAFDg==", - "requires": { - "gud": "^1.0.0", - "warning": "^4.0.3" + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, - "@ant-design/icons": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.6.2.tgz", - "integrity": "sha512-QsBG2BxBYU/rxr2eb8b2cZ4rPKAPBpzAR+0v6rrZLp/lnyvflLH3tw1vregK+M7aJauGWjIGNdFmUfpAOtw25A==", - "requires": { - "@ant-design/colors": "^6.0.0", - "@ant-design/icons-svg": "^4.0.0", + "node_modules/@ant-design/colors": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-7.0.0.tgz", + "integrity": "sha512-iVm/9PfGCbC0dSMBrz7oiEXZaaGH7ceU40OJEfKmyuzR9R5CRimJYPlRiFtMQGQcbNMea/ePcoIebi4ASGYXtg==", + "dependencies": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "node_modules/@ant-design/cssinjs": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.9.1.tgz", + "integrity": "sha512-CZt1vCMs/sY7RoacYuIkZwQmb8Bhp99ReNNE9Y8lnUzik8fmCdKAQA7ecvVOFwmNFdcBHga7ye/XIRrsbkiqWw==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "@emotion/hash": "^0.8.0", + "@emotion/unitless": "^0.7.5", + "classnames": "^2.3.1", + "csstype": "^3.0.10", + "rc-util": "^5.27.0", + "stylis": "^4.0.13" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-5.1.3.tgz", + "integrity": "sha512-vajYXDkzRQevAJwXgbFzVJ3970nKYqGjX+0+L5/FJcPbItSco32U1k06K9wC0OochLfL/z0U13JN1BsniqMYsA==", + "dependencies": { + "@ant-design/colors": "^7.0.0", + "@ant-design/icons-svg": "^4.2.1", "@babel/runtime": "^7.11.2", "classnames": "^2.2.6", - "rc-util": "^5.9.4" + "rc-util": "^5.31.1" + }, + "engines": { + "node": ">=8" }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz", + "integrity": "sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==" + }, + "node_modules/@ant-design/react-slick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.0.1.tgz", + "integrity": "sha512-ARM0TmpGdDuUVE10NwUCENQlJSInNKo5NiBjL5szu5BxWNEHNwQMcDrlVCqFbkvFLy+2CvywW8Y59QJtC0YDag==", "dependencies": { - "@ant-design/colors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz", - "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==", - "requires": { - "@ctrl/tinycolor": "^3.4.0" - } - }, - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "rc-util": { - "version": "5.13.2", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.13.2.tgz", - "integrity": "sha512-eYc71XXGlp96RMzg01Mhq/T3BL6OOVTDSS0urFEuvpi+e7slhJRhaHGCKy2hqJm18m9ff7VoRoptplKu60dYog==", - "requires": { - "@babel/runtime": "^7.12.5", - "react-is": "^16.12.0", - "shallowequal": "^1.1.0" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - } + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "resize-observer-polyfill": "^1.5.1", + "throttle-debounce": "^5.0.0" + }, + "peerDependencies": { + "react": ">=16.9.0" } }, - "@ant-design/icons-react": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@ant-design/icons-react/-/icons-react-2.0.1.tgz", - "integrity": "sha512-r1QfoltMuruJZqdiKcbPim3d8LNsVPB733U0gZEUSxBLuqilwsW28K2rCTWSMTjmFX7Mfpf+v/wdiFe/XCqThw==", - "requires": { - "@ant-design/colors": "^3.1.0", - "babel-runtime": "^6.26.0" + "node_modules/@aw-web-design/x-default-browser": { + "version": "1.4.88", + "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz", + "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==", + "dependencies": { + "default-browser-id": "3.0.0" + }, + "bin": { + "x-default-browser": "bin/x-default-browser.js" } }, - "@ant-design/icons-svg": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz", - "integrity": "sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==" + "node_modules/@babel/cli": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.21.5.tgz", + "integrity": "sha512-TOKytQ9uQW9c4np8F+P7ZfPINy5Kv+pizDIUwSVH8X5zHgYHV4AA8HE5LA450xXeu4jEfmUckTYvv1I4S26M/g==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "@babel/code-frame": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", - "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", - "requires": { - "@babel/highlight": "^7.8.3" - } - }, - "@babel/compat-data": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.0.tgz", - "integrity": "sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==" - }, - "@babel/core": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.8.tgz", - "integrity": "sha512-/AtaeEhT6ErpDhInbXmjHcUQXH0L0TEgscfcxk1qbOvLuKCa5aZT0SOOtDKFY96/CLROwbLSKyFor6idgNaU4Q==", - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.8", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.8", - "@babel/helpers": "^7.14.8", - "@babel/parser": "^7.14.8", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.8", - "@babel/types": "^7.14.8", + "node_modules/@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.3.tgz", + "integrity": "sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.1.tgz", + "integrity": "sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.22.0", + "@babel/helper-compilation-targets": "^7.22.1", + "@babel/helper-module-transforms": "^7.22.1", + "@babel/helpers": "^7.22.0", + "@babel/parser": "^7.22.0", + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.2", + "semver": "^6.3.0" }, - "dependencies": { - "@babel/code-frame": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", - "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", - "requires": { - "@babel/highlight": "^7.14.5" - } - }, - "@babel/compat-data": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz", - "integrity": "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==" - }, - "@babel/generator": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.8.tgz", - "integrity": "sha512-cYDUpvIzhBVnMzRoY1fkSEhK/HmwEVwlyULYgn/tMQYd6Obag3ylCjONle3gdErfXBW61SVTlR9QR7uWlgeIkg==", - "requires": { - "@babel/types": "^7.14.8", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz", - "integrity": "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==", - "requires": { - "@babel/compat-data": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - } - }, - "@babel/helper-function-name": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", - "requires": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz", - "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-module-imports": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-module-transforms": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.8.tgz", - "integrity": "sha512-RyE+NFOjXn5A9YU1dkpeBaduagTlZ0+fccnIcAGbv1KGUlReBj7utF7oEth8IdIBQPcux0DDgW5MFBH2xu9KcA==", - "requires": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-simple-access": "^7.14.8", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.8", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.8", - "@babel/types": "^7.14.8" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-replace-supers": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz", - "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", - "requires": { - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-simple-access": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz", - "integrity": "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==", - "requires": { - "@babel/types": "^7.14.8" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz", - "integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==" - }, - "@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" - }, - "@babel/helpers": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.8.tgz", - "integrity": "sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw==", - "requires": { - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.8", - "@babel/types": "^7.14.8" - } - }, - "@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.8.tgz", - "integrity": "sha512-syoCQFOoo/fzkWDeM0dLEZi5xqurb5vuyzwIMNZRNun+N/9A4cUZeQaE7dTrB8jGaKuJRBtEOajtnmw0I5hvvA==" - }, - "@babel/template": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/traverse": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.8.tgz", - "integrity": "sha512-kexHhzCljJcFNn1KYAQ6A5wxMRzq9ebYpEDV4+WdNyr3i7O44tanbDOR/xjiG2F3sllan+LgwK+7OMk0EmydHg==", - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.8", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.14.8", - "@babel/types": "^7.14.8", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.8.tgz", - "integrity": "sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.8", - "to-fast-properties": "^2.0.0" - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "@babel/generator": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", - "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", - "requires": { - "@babel/types": "^7.12.11", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "@babel/types": { - "version": "7.12.12", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", - "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/eslint-parser": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz", + "integrity": "sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", - "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", - "requires": { - "@babel/types": "^7.12.13" - }, + "node_modules/@babel/generator": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.3.tgz", + "integrity": "sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.22.3", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", - "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", - "requires": { - "@babel/helper-explode-assignable-expression": "^7.12.13", - "@babel/types": "^7.12.13" + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dependencies": { + "@babel/types": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.3.tgz", + "integrity": "sha512-ahEoxgqNoYXm0k22TvOke48i1PkavGu0qGCmcq9ugi6gnmvKNaMjKBSrZTnWUi1CFEeNAUiVba0Wtzm03aSkJg==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-compilation-targets": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz", - "integrity": "sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==", - "requires": { - "@babel/compat-data": "^7.13.15", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.14.5", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz", + "integrity": "sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==", + "dependencies": { + "@babel/compat-data": "^7.22.0", + "@babel/helper-validator-option": "^7.21.0", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", "semver": "^6.3.0" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-create-class-features-plugin": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.0.tgz", - "integrity": "sha512-6pXDPguA5zC40Y8oI5mqr+jEUpjMJonKvknvA+vD8CYDz5uuXEwWBK8sRAsE/t3gfb1k15AQb9RhwpscC4nUJQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13" + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.1.tgz", + "integrity": "sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-member-expression-to-functions": "^7.22.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.22.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.12.17", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", - "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "regexpu-core": "^4.7.1" + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.1.tgz", + "integrity": "sha512-WWjdnfR3LPIe+0EY8td7WmjhytxXtjKAEpnAxun/hkNiyOaPlvGK+NZaBFIdi9ndYV3Gav7BpFvtUwnaJlwi1w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.3.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-define-polyfill-provider": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz", - "integrity": "sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==", - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz", + "integrity": "sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2", "semver": "^6.1.2" }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "peerDependencies": { + "@babel/core": "^7.4.0-0" } }, - "@babel/helper-explode-assignable-expression": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz", - "integrity": "sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==", - "requires": { - "@babel/types": "^7.13.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz", + "integrity": "sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==", + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-function-name": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", - "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.12.13" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-get-function-arity": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", - "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", - "requires": { - "@babel/types": "^7.12.13" - }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-hoist-variables": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz", - "integrity": "sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==", - "requires": { - "@babel/traverse": "^7.13.15", - "@babel/types": "^7.13.16" - }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.3.tgz", + "integrity": "sha512-Gl7sK04b/2WOb6OPVeNy9eFKeD3L6++CzL3ykPOWqTn08xgYYK0wz4TUh2feIImDXxcVW3/9WQ1NMKY66/jfZA==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz", - "integrity": "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==", - "requires": { - "@babel/types": "^7.13.12" - }, + "node_modules/@babel/helper-module-imports": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.21.4" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-module-imports": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz", - "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==", - "requires": { - "@babel/types": "^7.8.3" - } - }, - "@babel/helper-module-transforms": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz", - "integrity": "sha512-L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw==", - "requires": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" - }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/helper-module-transforms": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.1.tgz", + "integrity": "sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", - "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", - "requires": { - "@babel/types": "^7.12.13" - }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-plugin-utils": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", - "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz", - "integrity": "sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-wrap-function": "^7.13.0", - "@babel/types": "^7.13.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/helper-plugin-utils": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", + "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-replace-supers": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz", - "integrity": "sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==", - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.13.0", - "@babel/types": "^7.13.12" - }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/helper-simple-access": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz", - "integrity": "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==", - "requires": { - "@babel/types": "^7.13.12" - }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.1.tgz", + "integrity": "sha512-ut4qrkE4AuSfrwHSps51ekR1ZY/ygrP1tp0WFm8oVq6nzc/hvfV/22JylndIbsf2U2M9LOMwiSddr6y+78j+OQ==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-member-expression-to-functions": "^7.22.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", - "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", - "requires": { - "@babel/types": "^7.12.1" - }, + "node_modules/@babel/helper-simple-access": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-split-export-declaration": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", - "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", - "requires": { - "@babel/types": "^7.12.13" + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dependencies": { + "@babel/types": "^7.20.0" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + "node_modules/@babel/helper-string-parser": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", + "engines": { + "node": ">=6.9.0" + } }, - "@babel/helper-validator-option": { - "version": "7.12.17", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", - "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "engines": { + "node": ">=6.9.0" + } }, - "@babel/helper-wrap-function": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz", - "integrity": "sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==", - "requires": { - "@babel/helper-function-name": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.13.0", - "@babel/types": "^7.13.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "engines": { + "node": ">=6.9.0" } }, - "@babel/helpers": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz", - "integrity": "sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==", - "requires": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" + "node_modules/@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.3.tgz", + "integrity": "sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "@babel/template": "^7.21.9", + "@babel/traverse": "^7.22.1", + "@babel/types": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/highlight": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", - "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", - "requires": { + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", - "esutils": "^2.0.2", "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/parser": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", - "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==" + "node_modules/@babel/parser": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.3.tgz", + "integrity": "sha512-vrukxyW/ep8UD1UDzOYpTKQ6abgjFoeG6L+4ar9+c5TN9QnlqiOi6QK7LSR5ewm/ERyGkT/Ai6VboNrxhbr9Uw==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz", - "integrity": "sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.13.12" + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.3.tgz", + "integrity": "sha512-6r4yRwEnorYByILoDRnEqxtojYKuiIv9FojW2E8GUKo9eWBwbKcd9IiZOZpdyXc64RmyGGyPu3/uAcrz/dq2kQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-transform-optional-chaining": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.13.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz", - "integrity": "sha512-VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-remap-async-to-generator": "^7.13.0", + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", "@babel/plugin-syntax-async-generators": "^7.8.4" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-class-properties": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz", - "integrity": "sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.13.0", - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.13.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz", - "integrity": "sha512-fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-class-static-block": "^7.12.13" - }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz", + "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "@babel/plugin-proposal-decorators": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", - "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-decorators": "^7.12.1" + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.3.tgz", + "integrity": "sha512-XjTKH3sHr6pPqG+hR1NCdVupwiosfdKM2oSMyKQVQ5Bym9l/p7BuLAqT5U32zZzRCfPq/TPRPzMiiTE9bOXU4w==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-replace-supers": "^7.22.1", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz", - "integrity": "sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } - } - }, - "@babel/plugin-proposal-export-default-from": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.12.13.tgz", - "integrity": "sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13", - "@babel/plugin-syntax-export-default-from": "^7.12.13" + "engines": { + "node": ">=6.9.0" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", - "dev": true - } + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", - "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13", + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-json-strings": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz", - "integrity": "sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-json-strings": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz", - "integrity": "sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz", - "integrity": "sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", - "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13", + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz", - "integrity": "sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==", - "requires": { - "@babel/compat-data": "^7.13.8", - "@babel/helper-compilation-targets": "^7.13.8", - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.13.0" + "@babel/plugin-transform-parameters": "^7.20.7" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz", - "integrity": "sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz", - "integrity": "sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-private-methods": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz", - "integrity": "sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.13.0", - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz", - "integrity": "sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-create-class-features-plugin": "^7.14.0", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-private-property-in-object": "^7.14.0" - }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz", + "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", - "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.13", - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-async-generators": { + "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-bigint": { + "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-class-properties": { + "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz", - "integrity": "sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-decorators": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz", - "integrity": "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.3.tgz", + "integrity": "sha512-R16Zuge73+8/nLcDjkIpyhi5wIbN7i7fiuLJR8yQX7vPAa/ltUKtd3iLbb4AgP5nrLi91HnNUNosELIGUGH1bg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-dynamic-import": { + "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-default-from": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.12.13.tgz", - "integrity": "sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", - "dev": true - } + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-export-namespace-from": { + "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-flow": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz", - "integrity": "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.3.tgz", + "integrity": "sha512-i35jZJv6aO7hxEbIWQ41adVfOzjm9dcYDNeWlBMd8p0ZQRtNUCBrmGwZt+H5lb+oOC9a3svp956KP0oWGA1YsA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-import-meta": { + "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-json-strings": { + "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-jsx": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", - "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", + "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "dev": true - } + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-logical-assignment-operators": { + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-nullish-coalescing-operator": { + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-numeric-separator": { + "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-object-rest-spread": { + "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-optional-catch-binding": { + "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-optional-chaining": { + "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "requires": { + "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz", - "integrity": "sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", - "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-syntax-typescript": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", - "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", + "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz", - "integrity": "sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz", - "integrity": "sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==", - "requires": { - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-remap-async-to-generator": "^7.13.0" - }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz", + "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", - "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.3.tgz", + "integrity": "sha512-36A4Aq48t66btydbZd5Fk0/xJqbpg/v4QWI4AH4cYHBXy9Mu42UOupZpebKFiCFNT9S9rJFcsld0gsv0ayLjtA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-block-scoping": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.13.16.tgz", - "integrity": "sha512-ad3PHUxGnfWF4Efd3qFuznEtZKoBp0spS+DgqzVzRPV7urEBvPLue3y2j80w4Jf2YLzZHj8TOv/Lmvdmh3b2xg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-classes": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz", - "integrity": "sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-replace-supers": "^7.13.0", - "@babel/helper-split-export-declaration": "^7.12.13", - "globals": "^11.1.0" - }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-computed-properties": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz", - "integrity": "sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz", + "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-destructuring": { - "version": "7.13.17", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz", - "integrity": "sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.3.tgz", + "integrity": "sha512-mASLsd6rhOrLZ5F3WbCxkzl67mmOnqik0zrg5W6D/X0QMW7HtvnoL1dRARLKIbMP3vXwkwziuLesPqWVGIl6Bw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", - "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.13", - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.3.tgz", + "integrity": "sha512-5BirgNWNOx7cwbTJCOmKFJ1pZjwk5MUfMIwiBBvsirCJMZeQgs5pk6i1OlkVg+1Vef5LfBahFOrdCnAWvkVKMw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", - "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz", + "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", - "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz", + "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/template": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", - "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-flow": "^7.12.1" + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.21.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz", + "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-for-of": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz", - "integrity": "sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-function-name": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", - "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", - "requires": { - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-literals": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", - "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.1.tgz", + "integrity": "sha512-rlhWtONnVBPdmt+jeewS0qSnMz/3yLFrqAP8hHC6EDcrYRSyuz9f9yQhHvVn2Ad6+yO9fHXac5piudeYrInxwQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", - "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-amd": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz", - "integrity": "sha512-CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ==", - "requires": { - "@babel/helper-module-transforms": "^7.14.0", - "@babel/helper-plugin-utils": "^7.13.0", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.3.tgz", + "integrity": "sha512-5Ti1cHLTDnt3vX61P9KZ5IG09bFXp4cDVFJIAeCZuxu9OXXJJZp5iP0n/rzM2+iAutJY+KWEyyHcRaHlpQ/P5g==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz", - "integrity": "sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==", - "requires": { - "@babel/helper-module-transforms": "^7.14.0", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-simple-access": "^7.13.12", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-flow": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz", - "integrity": "sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==", - "requires": { - "@babel/helper-hoist-variables": "^7.13.0", - "@babel/helper-module-transforms": "^7.13.0", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-validator-identifier": "^7.12.11", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz", + "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-modules-umd": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz", - "integrity": "sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==", - "requires": { - "@babel/helper-module-transforms": "^7.14.0", - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", - "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.13" + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.3.tgz", + "integrity": "sha512-IuvOMdeOOY2X4hRNAT6kwbePtK21BUyrAEgLKviL8pL6AEEVUVcqtRdN/HJXBLGIbt9T3ETmXRnFedRRmQNTYw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-new-target": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", - "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-object-super": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", - "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13", - "@babel/helper-replace-supers": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.3.tgz", + "integrity": "sha512-CbayIfOw4av2v/HYZEsH+Klks3NC2/MFIR3QR8gnpGNNPEaq2fdlVCRYG/paKs7/5hvBLQ+H70pGWOHtlNEWNA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-parameters": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz", - "integrity": "sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-property-literals": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", - "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-constant-elements": { - "version": "7.13.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.13.13.tgz", - "integrity": "sha512-SNJU53VM/SjQL0bZhyU+f4kJQz7bQQajnrZRSaU21hruG/NWY41AEM9AWXeXX90pYr/C2yAmTgI6yW3LlLrAUQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" - }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz", + "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-simple-access": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-display-name": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", - "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.3.tgz", + "integrity": "sha512-V21W3bKLxO3ZjcBJZ8biSvo5gQ85uIXW2vJfh7JSWf/4SLUSr1tOoHX3ruN4+Oqa2m+BKfsxTR1I+PsvkIWvNw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz", - "integrity": "sha512-jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-jsx": "^7.12.13", - "@babel/types": "^7.13.12" - }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/plugin-syntax-jsx": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", - "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.12.17", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", - "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", - "requires": { - "@babel/plugin-transform-react-jsx": "^7.12.17" + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.3.tgz", + "integrity": "sha512-c6HrD/LpUdNNJsISQZpds3TXvfYIAbo+efE9aWmY/PmSRD0agrJ9cPMt4BmArwUQ7ZymEWTFjTyp+yReLJZh0Q==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz", - "integrity": "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.3.tgz", + "integrity": "sha512-5RuJdSo89wKdkRTqtM9RVVJzHum9c2s0te9rB7vZC1zKKxcioWIy+xcu4OoIAjyFZhb/bp5KkunuLin1q7Ct+w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.3.tgz", + "integrity": "sha512-CpaoNp16nX7ROtLONNuCyenYdY/l7ZsR6aoVa7rW7nMWisoNoQNIH5Iay/4LDyRjKMuElMqXiBoOQCDLTMGZiw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz", - "integrity": "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.3.tgz", + "integrity": "sha512-+AF88fPDJrnseMh5vD9+SH6wq4ZMvpiTMHh58uLs+giMEyASFVhcT3NkoyO+NebFCNnpHJEq5AXO2txV4AGPDQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.3.tgz", + "integrity": "sha512-38bzTsqMMCI46/TQnJwPPpy33EjLCc1Gsm2hRTF6zTMWnKsN61vdrpuzIEGQyKEhDSYDKyZHrrd5FMj4gcUHhw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/compat-data": "^7.22.3", + "@babel/helper-compilation-targets": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-react-pure-annotations": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", - "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-plugin-utils": "^7.10.4" + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-regenerator": { - "version": "7.13.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz", - "integrity": "sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==", - "requires": { - "regenerator-transform": "^0.14.2" + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.3.tgz", + "integrity": "sha512-bnDFWXFzWY0BsOyqaoSXvMQ2F35zutQipugog/rqotL2S4ciFOKlRYUu9djt4iq09oh2/34hqfRR2k1dIvuu4g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-reserved-words": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", - "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.3.tgz", + "integrity": "sha512-63v3/UFFxhPKT8j8u1jTTGVyITxl7/7AfOqK8C5gz1rHURPUGe3y5mvIf68eYKGoBNahtJnTxBKug4BQOnzeJg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.3.tgz", + "integrity": "sha512-x7QHQJHPuD9VmfpzboyGJ5aHEr9r7DsAsdxdhJiTB3J3j8dyl+NFZ+rX5Q2RWFDCs61c06qBfS4ys2QYn8UkMw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", - "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", - "requires": { - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "resolve": "^1.8.1", - "semver": "^5.5.1" - }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.3.tgz", + "integrity": "sha512-fC7jtjBPFqhqpPAE+O4LKwnLq7gGkD3ZmC2E3i4qWH34mH3gOg2Xrq5YMHUq6DM30xhqM1DNftiRaSqVjEG+ug==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", - "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.3.tgz", + "integrity": "sha512-C7MMl4qWLpgVCbXfj3UW8rR1xeCnisQ0cU7YJHV//8oNBS0aCIVg1vFnZXxOckHhEpQyqNNkWmvSEWnMLlc+Vw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-spread": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz", - "integrity": "sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.3.tgz", + "integrity": "sha512-b5J6muxQYp4H7loAQv/c7GO5cPuRA6H5hx4gO+/Hn+Cu9MRQU0PNiUoWq1L//8sq6kFSNxGXFb2XTaUfa9y+Pg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", - "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.3.tgz", + "integrity": "sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-jsx": "^7.21.4", + "@babel/types": "^7.22.3" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/plugin-transform-react-jsx": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-template-literals": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz", - "integrity": "sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0" + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz", + "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", - "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.22.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.2.tgz", + "integrity": "sha512-ewgWBw1pAoqFg9crO6yhZAQoKWN/iNEGqAmuYegZp+xEpvMHGyLxt0SgPZ9bWG6jx4eff6jQ4JILt5zwj/EoTg==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-plugin-utils": "^7.21.5", + "babel-plugin-polyfill-corejs2": "^0.4.2", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-typescript": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz", - "integrity": "sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.13.0", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-typescript": "^7.12.13" - }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", - "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", - "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.12.13", - "@babel/helper-plugin-utils": "^7.12.13" + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-env": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.0.tgz", - "integrity": "sha512-GWRCdBv2whxqqaSi7bo/BEXf070G/fWFMEdCnmoRg2CZJy4GK06ovFuEjJrZhDRXYgBsYtxVbG8GUHvw+UWBkQ==", - "requires": { - "@babel/compat-data": "^7.14.0", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-validator-option": "^7.12.17", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.13.12", - "@babel/plugin-proposal-async-generator-functions": "^7.13.15", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-class-static-block": "^7.13.11", - "@babel/plugin-proposal-dynamic-import": "^7.13.8", - "@babel/plugin-proposal-export-namespace-from": "^7.12.13", - "@babel/plugin-proposal-json-strings": "^7.13.8", - "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-numeric-separator": "^7.12.13", - "@babel/plugin-proposal-object-rest-spread": "^7.13.8", - "@babel/plugin-proposal-optional-catch-binding": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-proposal-private-methods": "^7.13.0", - "@babel/plugin-proposal-private-property-in-object": "^7.14.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.3.tgz", + "integrity": "sha512-pyjnCIniO5PNaEuGxT28h0HbMru3qCVrMqVgVOz/krComdIrY9W6FCLBq9NWHY8HDGaUlan+UhmZElDENIfCcw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/plugin-syntax-typescript": "^7.21.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz", + "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.3.tgz", + "integrity": "sha512-5ScJ+OmdX+O6HRuMGW4kv7RL9vIKdtdAj9wuWUKy1wbHY3jaM/UlyIiC1G7J6UJiiyMukjjK0QwL3P0vBd0yYg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.3.tgz", + "integrity": "sha512-hNufLdkF8vqywRp+P55j4FHXqAX2LRUccoZHH7AFn1pq5ZOO2ISKW9w13bFZVjBoTqeve2HOgoJCcaziJVhGNw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.2.tgz", + "integrity": "sha512-UPNK9pgphMULvA2EMKIWHU90C47PKyuvQ8pE1MzH7l9PgFcRabdrHhlePpBuWxYZQ+TziP2nycKoI5C1Yhdm9Q==", + "dependencies": { + "@babel/compat-data": "^7.22.0", + "@babel/helper-compilation-targets": "^7.22.1", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-validator-option": "^7.21.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.0", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-attributes": "^7.22.0", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -2153,19745 +2048,18795 @@ "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.0", - "@babel/plugin-syntax-top-level-await": "^7.12.13", - "@babel/plugin-transform-arrow-functions": "^7.13.0", - "@babel/plugin-transform-async-to-generator": "^7.13.0", - "@babel/plugin-transform-block-scoped-functions": "^7.12.13", - "@babel/plugin-transform-block-scoping": "^7.13.16", - "@babel/plugin-transform-classes": "^7.13.0", - "@babel/plugin-transform-computed-properties": "^7.13.0", - "@babel/plugin-transform-destructuring": "^7.13.17", - "@babel/plugin-transform-dotall-regex": "^7.12.13", - "@babel/plugin-transform-duplicate-keys": "^7.12.13", - "@babel/plugin-transform-exponentiation-operator": "^7.12.13", - "@babel/plugin-transform-for-of": "^7.13.0", - "@babel/plugin-transform-function-name": "^7.12.13", - "@babel/plugin-transform-literals": "^7.12.13", - "@babel/plugin-transform-member-expression-literals": "^7.12.13", - "@babel/plugin-transform-modules-amd": "^7.14.0", - "@babel/plugin-transform-modules-commonjs": "^7.14.0", - "@babel/plugin-transform-modules-systemjs": "^7.13.8", - "@babel/plugin-transform-modules-umd": "^7.14.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", - "@babel/plugin-transform-new-target": "^7.12.13", - "@babel/plugin-transform-object-super": "^7.12.13", - "@babel/plugin-transform-parameters": "^7.13.0", - "@babel/plugin-transform-property-literals": "^7.12.13", - "@babel/plugin-transform-regenerator": "^7.13.15", - "@babel/plugin-transform-reserved-words": "^7.12.13", - "@babel/plugin-transform-shorthand-properties": "^7.12.13", - "@babel/plugin-transform-spread": "^7.13.0", - "@babel/plugin-transform-sticky-regex": "^7.12.13", - "@babel/plugin-transform-template-literals": "^7.13.0", - "@babel/plugin-transform-typeof-symbol": "^7.12.13", - "@babel/plugin-transform-unicode-escapes": "^7.12.13", - "@babel/plugin-transform-unicode-regex": "^7.12.13", - "@babel/preset-modules": "^0.1.4", - "@babel/types": "^7.14.0", - "babel-plugin-polyfill-corejs2": "^0.2.0", - "babel-plugin-polyfill-corejs3": "^0.2.0", - "babel-plugin-polyfill-regenerator": "^0.2.0", - "core-js-compat": "^3.9.0", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.21.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.0", + "@babel/plugin-transform-async-to-generator": "^7.20.7", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.21.0", + "@babel/plugin-transform-class-properties": "^7.22.0", + "@babel/plugin-transform-class-static-block": "^7.22.0", + "@babel/plugin-transform-classes": "^7.21.0", + "@babel/plugin-transform-computed-properties": "^7.21.5", + "@babel/plugin-transform-destructuring": "^7.21.3", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-dynamic-import": "^7.22.1", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-export-namespace-from": "^7.22.0", + "@babel/plugin-transform-for-of": "^7.21.5", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-json-strings": "^7.22.0", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.0", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.20.11", + "@babel/plugin-transform-modules-commonjs": "^7.21.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.0", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.0", + "@babel/plugin-transform-new-target": "^7.22.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.0", + "@babel/plugin-transform-numeric-separator": "^7.22.0", + "@babel/plugin-transform-object-rest-spread": "^7.22.0", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-optional-catch-binding": "^7.22.0", + "@babel/plugin-transform-optional-chaining": "^7.22.0", + "@babel/plugin-transform-parameters": "^7.22.0", + "@babel/plugin-transform-private-methods": "^7.22.0", + "@babel/plugin-transform-private-property-in-object": "^7.22.0", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.21.5", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.21.5", + "@babel/plugin-transform-unicode-property-regex": "^7.22.0", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.0", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.22.0", + "babel-plugin-polyfill-corejs2": "^0.4.2", + "babel-plugin-polyfill-corejs3": "^0.8.1", + "babel-plugin-polyfill-regenerator": "^0.5.0", + "core-js-compat": "^3.30.2", "semver": "^6.3.0" }, - "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-flow": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.14.5.tgz", - "integrity": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-transform-flow-strip-types": "^7.14.5" - }, + "node_modules/@babel/preset-flow": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.21.4.tgz", + "integrity": "sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", - "dev": true - }, - "@babel/plugin-syntax-flow": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz", - "integrity": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz", - "integrity": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-flow": "^7.14.5" - } - } + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.21.0", + "@babel/plugin-transform-flow-strip-types": "^7.21.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-modules": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", - "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", - "requires": { + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-react": { - "version": "7.13.13", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.13.13.tgz", - "integrity": "sha512-gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==", - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-validator-option": "^7.12.17", - "@babel/plugin-transform-react-display-name": "^7.12.13", - "@babel/plugin-transform-react-jsx": "^7.13.12", - "@babel/plugin-transform-react-jsx-development": "^7.12.17", - "@babel/plugin-transform-react-pure-annotations": "^7.12.1" - }, + "node_modules/@babel/preset-react": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.3.tgz", + "integrity": "sha512-lxDz1mnZ9polqClBCVBjIVUypoB4qV3/tZUDb/IlYbW1kiiLaXaX+bInbRjl+lNQ/iUZraQ3+S8daEmoELMWug==", "dependencies": { - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" - } + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-validator-option": "^7.21.0", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.22.3", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/preset-typescript": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", - "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-transform-typescript": "^7.12.1" + "node_modules/@babel/preset-typescript": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz", + "integrity": "sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-validator-option": "^7.21.0", + "@babel/plugin-syntax-jsx": "^7.21.4", + "@babel/plugin-transform-modules-commonjs": "^7.21.5", + "@babel/plugin-transform-typescript": "^7.21.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/register": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.13.16.tgz", - "integrity": "sha512-dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==", - "dev": true, - "requires": { + "node_modules/@babel/register": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.21.0.tgz", + "integrity": "sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==", + "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", "make-dir": "^2.1.0", - "pirates": "^4.0.0", + "pirates": "^4.0.5", "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "@babel/runtime": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.4.tgz", - "integrity": "sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ==", - "requires": { - "regenerator-runtime": "^0.13.2" + "node_modules/@babel/register/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dependencies": { - "regenerator-runtime": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" - } + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "@babel/runtime-corejs3": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz", - "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==", - "requires": { - "core-js-pure": "^3.0.0", - "regenerator-runtime": "^0.13.4" + "node_modules/@babel/register/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/register/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dependencies": { - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - } + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "@babel/template": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", - "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" + "node_modules/@babel/register/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/register/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz", + "integrity": "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==", "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.0.tgz", - "integrity": "sha512-AHbfoxesfBALg33idaTBVUkLnfXtsgvJREf93p4p0Lwsz4ppfE7g1tpEXVm4vrxUcH4DVhAa9Z1m1zqf9WUC7Q==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" } }, - "@babel/traverse": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.0.tgz", - "integrity": "sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA==", - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.0", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.0", - "@babel/types": "^7.14.0", + "node_modules/@babel/template": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.21.9.tgz", + "integrity": "sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==", + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/parser": "^7.21.9", + "@babel/types": "^7.21.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.22.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.1.tgz", + "integrity": "sha512-lAWkdCoUFnmwLBhIRLciFntGYsIIoC6vIbN8zrLPqBnJmPu7Z6nzqnKd7FsxQUNAvZfVZ0x6KdNvNp8zWIOHSQ==", + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.22.0", + "@babel/helper-environment-visitor": "^7.22.1", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.22.0", + "@babel/types": "^7.22.0", "debug": "^4.1.0", "globals": "^11.1.0" }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/generator": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.0.tgz", - "integrity": "sha512-C6u00HbmsrNPug6A+CiNl8rEys7TsdcXwg12BHi2ca5rUfAs3+UwZsuDQSXnc+wCElCXMB8gMaJ3YXDdh8fAlg==", - "requires": { - "@babel/types": "^7.14.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.0.tgz", - "integrity": "sha512-AHbfoxesfBALg33idaTBVUkLnfXtsgvJREf93p4p0Lwsz4ppfE7g1tpEXVm4vrxUcH4DVhAa9Z1m1zqf9WUC7Q==" - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - } + "engines": { + "node": ">=6.9.0" } }, - "@babel/types": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.6.tgz", - "integrity": "sha512-wqz7pgWMIrht3gquyEFPVXeXCti72Rm8ep9b5tQKz9Yg9LzJA3HxosF1SB3Kc81KD1A3XBkkVYtJvCKS2Z/QrA==", - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", + "node_modules/@babel/types": { + "version": "7.22.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.3.tgz", + "integrity": "sha512-P3na3xIQHTKY4L0YOG7pM8M8uoUIB910WQaSiiMCZUC2Cy8XFEQONGABFnHWBa2gpGKODTAJcNhi5Zk0sLRrzg==", + "dependencies": { + "@babel/helper-string-parser": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@base2/pretty-print-object": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz", - "integrity": "sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==", + "node_modules/@base2/pretty-print-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", + "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", "dev": true }, - "@bcoe/v8-coverage": { + "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" }, - "@cnakazawa/watch": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", - "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", - "requires": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "optional": true, + "engines": { + "node": ">=0.1.90" } }, - "@csstools/convert-colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", - "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } }, - "@csstools/normalize.css": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", - "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "peer": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } }, - "@ctrl/tinycolor": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz", - "integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==" + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" }, - "@emotion/cache": { - "version": "10.0.29", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", - "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", - "dev": true, - "requires": { - "@emotion/sheet": "0.9.4", - "@emotion/stylis": "0.8.5", - "@emotion/utils": "0.11.3", - "@emotion/weak-memoize": "0.2.5" + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "@emotion/core": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.1.1.tgz", - "integrity": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/cache": "^10.0.27", - "@emotion/css": "^10.0.27", - "@emotion/serialize": "^0.11.15", - "@emotion/sheet": "0.9.4", - "@emotion/utils": "0.11.3" - } - }, - "@emotion/css": { - "version": "10.0.27", - "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz", - "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==", - "dev": true, - "requires": { - "@emotion/serialize": "^0.11.15", - "@emotion/utils": "0.11.3", - "babel-plugin-emotion": "^10.0.27" + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", - "dev": true + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "dev": true, - "requires": { - "@emotion/memoize": "0.7.4" + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", - "dev": true + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "dev": true, - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" - } - }, - "@emotion/sheet": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", - "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==", - "dev": true + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "@emotion/styled": { - "version": "10.0.27", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.27.tgz", - "integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==", - "dev": true, - "requires": { - "@emotion/styled-base": "^10.0.27", - "babel-plugin-emotion": "^10.0.27" + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "@emotion/styled-base": { - "version": "10.0.31", - "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.31.tgz", - "integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/is-prop-valid": "0.8.8", - "@emotion/serialize": "^0.11.15", - "@emotion/utils": "0.11.3" + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "@emotion/stylis": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==", - "dev": true + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz", + "integrity": "sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" }, - "@emotion/unitless": { + "node_modules/@emotion/unitless": { "version": "0.7.5", "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", - "dev": true + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==", - "dev": true + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "dev": true, + "peerDependencies": { + "react": ">=16.8.0" + } }, - "@emotion/weak-memoize": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", - "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==", - "dev": true + "node_modules/@esbuild/android-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", + "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", + "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", + "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", + "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", + "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", + "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", + "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", + "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", + "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", + "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", + "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", + "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", + "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", + "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", + "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", + "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", + "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", + "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", + "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", + "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", + "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", + "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "@endemolshinegroup/cosmiconfig-typescript-loader": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz", - "integrity": "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==", - "requires": { - "lodash.get": "^4", - "make-error": "^1", - "ts-node": "^9", - "tslib": "^2" - }, - "dependencies": { - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" - } + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", - "requires": { + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", + "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", + "dependencies": { "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^13.9.0", - "ignore": "^4.0.6", + "debug": "^4.3.2", + "espree": "^9.5.2", + "globals": "^13.19.0", + "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "globals": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.10.0.tgz", - "integrity": "sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@fontsource/source-sans-pro": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@fontsource/source-sans-pro/-/source-sans-pro-4.5.0.tgz", - "integrity": "sha512-+ze+nO9dVN5pAVg9CdQmVgR6f8kDpq/elHMGcyx3qsW4+TN4mI7EuMdNzKP3E1xeZwTHSmHY5bezpfFHX7bQsg==" + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } }, - "@hapi/address": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "@hapi/bourne": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" - }, - "@hapi/hoek": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" - }, - "@hapi/joi": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", - "requires": { - "@hapi/address": "2.x.x", - "@hapi/bourne": "1.x.x", - "@hapi/hoek": "8.x.x", - "@hapi/topo": "3.x.x" - } - }, - "@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "requires": { - "@hapi/hoek": "^8.3.0" + "node_modules/@eslint/js": { + "version": "8.41.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz", + "integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "@hcaptcha/react-hcaptcha": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@hcaptcha/react-hcaptcha/-/react-hcaptcha-0.3.6.tgz", - "integrity": "sha512-DQ5nvGVbbhd2IednxRhCV9wiPcCmclEV7bH98yGynGCXzO5XftO/XC0a1M1kEf9Ee+CLO/u+1HM/uE/PSrC3vQ==" + "node_modules/@fal-works/esbuild-plugin-global-externals": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", + "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==" }, - "@humanwhocodes/config-array": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", - "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", - "requires": { - "@humanwhocodes/object-schema": "^1.2.0", + "node_modules/@fontsource/source-sans-pro": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@fontsource/source-sans-pro/-/source-sans-pro-5.0.1.tgz", + "integrity": "sha512-x7JeUW93BXIYzDGuHCxbe+0gFNnqUNTliEcrhWqJnOSglD2zo6GHuSSoqoy8lOnbtgK394JY6CwXLRR31W6b2g==" + }, + "node_modules/@hcaptcha/react-hcaptcha": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@hcaptcha/react-hcaptcha/-/react-hcaptcha-1.8.1.tgz", + "integrity": "sha512-33tIl77HgeahiQ6R0+JPDA8cGBBv95cIVcdOcFVwiGCJhrOxyiOQetCdEUNTDS13xrkvIP29K/PrqLXXSbKl6Q==", + "dependencies": { + "@babel/runtime": "^7.17.9" + }, + "peerDependencies": { + "react": ">= 16.3.0", + "react-dom": ">= 16.3.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" } }, - "@humanwhocodes/object-schema": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz", - "integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==" + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, - "@istanbuljs/load-nyc-config": { + "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "requires": { + "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "@istanbuljs/schema": { + "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } }, - "@jest/console": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", - "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", - "requires": { - "@jest/types": "^26.6.2", + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^26.6.2", - "jest-util": "^26.6.2", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", "slash": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@jest/core": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", - "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", - "requires": { - "@jest/console": "^26.6.2", - "@jest/reporters": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", + "node_modules/@jest/console/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^26.6.2", - "jest-config": "^26.6.3", - "jest-haste-map": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-resolve-dependencies": "^26.6.3", - "jest-runner": "^26.6.3", - "jest-runtime": "^26.6.3", - "jest-snapshot": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "jest-watcher": "^26.6.2", - "micromatch": "^4.0.2", - "p-each-series": "^2.1.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/yargs-parser": "*" } }, - "@jest/environment": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", - "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", - "requires": { - "@jest/fake-timers": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "jest-mock": "^26.6.2" + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@jest/fake-timers": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", - "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", - "requires": { - "@jest/types": "^26.6.2", - "@sinonjs/fake-timers": "^6.0.1", - "@types/node": "*", - "jest-message-util": "^26.6.2", - "jest-mock": "^26.6.2", - "jest-util": "^26.6.2" + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@jest/globals": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", - "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", - "requires": { - "@jest/environment": "^26.6.2", - "@jest/types": "^26.6.2", - "expect": "^26.6.2" + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "@jest/reporters": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", - "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", + "node_modules/@jest/console/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.4", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^26.6.2", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-worker": "^26.6.2", - "node-notifier": "^8.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^7.0.0" + "stack-utils": "^2.0.3" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@jest/source-map": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", - "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", - "source-map": "^0.6.0" + "node_modules/@jest/console/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "@jest/test-result": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", - "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", - "requires": { - "@jest/console": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "@jest/test-sequencer": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", - "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", - "requires": { - "@jest/test-result": "^26.6.2", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^26.6.2", - "jest-runner": "^26.6.3", - "jest-runtime": "^26.6.3" + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dependencies": { - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true } } }, - "@jest/transform": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", - "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", - "requires": { + "node_modules/@jest/core/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { "@babel/core": "^7.1.0", - "@jest/types": "^26.6.2", - "babel-plugin-istanbul": "^6.0.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-util": "^26.6.2", - "micromatch": "^4.0.2", - "pirates": "^4.0.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", "slash": "^3.0.0", "source-map": "^0.6.1", "write-file-atomic": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "requires": { + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^15.0.0", + "@types/yargs": "^16.0.0", "chalk": "^4.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@lingui/babel-plugin-extract-messages": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-extract-messages/-/babel-plugin-extract-messages-3.10.2.tgz", - "integrity": "sha512-RBAw8mE/l6VtpunmgRllX2kotjvWhlo5skyySipQDmYRU7QWQV7z3F67UtaIyG4yHMqcdF3T/q9x45qcgtdDMw==", - "dev": true, - "requires": { - "@babel/generator": "^7.11.6", - "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.10.2", - "mkdirp": "^1.0.4" - }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "@types/yargs-parser": "*" } }, - "@lingui/babel-plugin-transform-js": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-transform-js/-/babel-plugin-transform-js-2.9.2.tgz", - "integrity": "sha512-yWoyhOfjRa9744TbVb/WN1OWxZYFLuXcWH5aVCu/sZ2b1YpsGCtfhplc5lRVWN8QcsfpjYmFiPqzU6swE5OFdQ==", - "dev": true - }, - "@lingui/babel-preset-react": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@lingui/babel-preset-react/-/babel-preset-react-2.9.2.tgz", - "integrity": "sha512-M+nfK/83+FnLEr63bBox5DKsSYgwPPmhfiLJAbc2BZBlmF1Nfqv/dHL+d2ynyEKNKCSVts476eDeiOFwv2MTNw==", - "dev": true, - "requires": { - "@lingui/babel-plugin-transform-js": "2.9.2", - "@lingui/babel-plugin-transform-react": "2.9.2" - }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "@lingui/babel-plugin-transform-react": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-transform-react/-/babel-plugin-transform-react-2.9.2.tgz", - "integrity": "sha512-bxvrepiS6J9vZqRtpRiAgBIASQscjvu7aFmPqH4Y6001TDXrYuyhhNRt1BI3k2E6C2SckHh5vRtSpsqpjEiY3A==", - "dev": true - } - } - }, - "@lingui/cli": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@lingui/cli/-/cli-3.10.2.tgz", - "integrity": "sha512-kuKMSeWyRYh3aw1zZZkqOzt2wjy1TdObji+PDg1OyoOgWkvap1SlpcFQ76Fgn2u1e6MOyDpfwg+I7fGEmOA+gQ==", - "dev": true, - "requires": { - "@babel/generator": "^7.11.6", - "@babel/parser": "^7.11.5", - "@babel/plugin-syntax-jsx": "^7.10.4", - "@babel/runtime": "^7.11.2", - "@babel/types": "^7.11.5", - "@lingui/babel-plugin-extract-messages": "^3.10.2", - "@lingui/conf": "^3.10.2", - "babel-plugin-macros": "^3.0.1", - "bcp-47": "^1.0.7", - "chalk": "^4.1.0", - "chokidar": "3.5.1", - "cli-table": "^0.3.1", - "commander": "^6.1.0", - "date-fns": "^2.16.1", - "fs-extra": "^9.0.1", - "fuzzaldrin": "^2.1.0", - "glob": "^7.1.4", - "inquirer": "^7.3.3", - "make-plural": "^6.2.2", - "messageformat-parser": "^4.1.3", - "micromatch": "4.0.2", - "mkdirp": "^1.0.4", - "node-gettext": "^3.0.0", - "normalize-path": "^3.0.0", - "ora": "^5.1.0", - "papaparse": "^5.3.0", - "pkg-up": "^3.1.0", - "plurals-cldr": "^1.0.4", - "pofile": "^1.1.0", - "pseudolocale": "^1.1.0", - "ramda": "^0.27.1" + "color-convert": "^2.0.1" }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz", - "integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==", - "dev": true - }, - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/types": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.8.tgz", - "integrity": "sha512-iob4soQa7dZw8nodR/KlOQkPh9S4I8RwCxwRIFuiMRYjOzH/KJzdUfDgz6cGi5dDaclXF4P2PAhCdrBJNIg68Q==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.8", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - } - } - }, - "@lingui/conf": { - "version": "3.10.4", - "resolved": "https://registry.npmjs.org/@lingui/conf/-/conf-3.10.4.tgz", - "integrity": "sha512-ywAYoALnGa8GLuRaC6jW2FKkkPF6TQBUs2ACth8lKHjvJNz/Q3ZYKkK+hQj4iLODc5jaCophACrpNrZj1ef/tw==", - "requires": { - "@babel/runtime": "^7.11.2", - "@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2", - "chalk": "^4.1.0", - "cosmiconfig": "^7.0.0", - "jest-validate": "^26.5.2", - "lodash.get": "^4.4.2" + "engines": { + "node": ">=8" }, - "dependencies": { - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@lingui/core": { - "version": "3.10.4", - "resolved": "https://registry.npmjs.org/@lingui/core/-/core-3.10.4.tgz", - "integrity": "sha512-V9QKQ9PFMTPrGGz2PaeKHZcxFikQZzJbptyQbVFJdXaKhdE2RH6HhdK1PIziDHqp6ZWPthVIfVLURT3ku8eu5w==", - "requires": { - "@babel/runtime": "^7.11.2", - "make-plural": "^6.2.2", - "messageformat-parser": "^4.1.3" + "node_modules/@jest/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" }, - "dependencies": { - "@babel/runtime": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", - "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@lingui/macro": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@lingui/macro/-/macro-3.10.2.tgz", - "integrity": "sha512-nEYUj1F4TUK4aHVpXcAagg7zx41Z7e3wjI1OFlmXkKSupDggYCn6jgzyyx46pUEB8Y5pIzCESPzQIa1P2sTPJA==", - "requires": { - "@babel/runtime": "^7.11.2", - "@lingui/conf": "^3.10.2", - "ramda": "^0.27.1" - }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@lingui/react": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@lingui/react/-/react-3.5.1.tgz", - "integrity": "sha512-5SZXSYsuPvJo25XFdUNBRJlf4+JSDl4vAYa3TvTN34oNTJ1GKR46TMeIUBwAw1DIWRx8IVrTMCeGTf+QiaP6sw==", - "requires": { - "@babel/runtime": "^7.11.2", - "@lingui/core": "^3.5.1" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz", - "integrity": "sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@lingui/core": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@lingui/core/-/core-3.5.1.tgz", - "integrity": "sha512-/YtTQs/3IQtEWVCFTHubPwnn3+nQa5Jn+ygEDimDZpUSQo5gZXbtcLHf/NcnUw3t+5TAbxOf11DzMfNExDEzfQ==", - "requires": { - "@babel/runtime": "^7.11.2", - "make-plural": "^6.2.2", - "messageformat-parser": "^4.1.3" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - } + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "@mdx-js/loader": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-1.6.22.tgz", - "integrity": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==", - "dev": true, - "requires": { - "@mdx-js/mdx": "1.6.22", - "@mdx-js/react": "1.6.22", - "loader-utils": "2.0.0" + "node_modules/@jest/core/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@mdx-js/mdx": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz", - "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==", - "dev": true, - "requires": { - "@babel/core": "7.12.9", - "@babel/plugin-syntax-jsx": "7.12.1", - "@babel/plugin-syntax-object-rest-spread": "7.8.3", - "@mdx-js/util": "1.6.22", - "babel-plugin-apply-mdx-type-prop": "1.6.22", - "babel-plugin-extract-import-names": "1.6.22", - "camelcase-css": "2.0.1", - "detab": "2.0.4", - "hast-util-raw": "6.0.1", - "lodash.uniq": "4.5.0", - "mdast-util-to-hast": "10.0.1", - "remark-footnotes": "2.0.0", - "remark-mdx": "1.6.22", - "remark-parse": "8.0.3", - "remark-squeeze-paragraphs": "4.0.0", - "style-to-object": "0.3.0", - "unified": "9.2.0", - "unist-builder": "2.0.3", - "unist-util-visit": "2.0.3" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/core": { - "version": "7.12.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", - "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.9", - "@babel/types": "^7.12.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", - "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.4.tgz", - "integrity": "sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "node_modules/@jest/core/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "@mdx-js/react": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz", - "integrity": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==", - "dev": true - }, - "@mdx-js/util": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz", - "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==", - "dev": true - }, - "@mrmlnc/readdir-enhanced": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", - "dev": true, - "requires": { - "call-me-maybe": "^1.0.1", - "glob-to-regexp": "^0.3.0" + "node_modules/@jest/core/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@nodelib/fs.scandir": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", - "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", - "requires": { - "@nodelib/fs.stat": "2.0.4", - "run-parallel": "^1.1.9" + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@nodelib/fs.stat": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", - "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" - }, - "@nodelib/fs.walk": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", - "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", - "requires": { - "@nodelib/fs.scandir": "2.1.4", - "fastq": "^1.6.0" + "node_modules/@jest/core/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, + "node_modules/@jest/core/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - } + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", - "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", - "requires": { - "ansi-html": "^0.0.7", - "error-stack-parser": "^2.0.6", - "html-entities": "^1.2.1", - "native-url": "^0.2.6", - "schema-utils": "^2.6.5", - "source-map": "^0.7.3" + "node_modules/@jest/core/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/core/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "@popperjs/core": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.9.2.tgz", - "integrity": "sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==", - "dev": true + "node_modules/@jest/core/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "@reach/router": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@reach/router/-/router-1.3.4.tgz", - "integrity": "sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==", - "dev": true, - "requires": { - "create-react-context": "0.3.0", - "invariant": "^2.2.3", - "prop-types": "^15.6.1", - "react-lifecycles-compat": "^3.0.4" - } - }, - "@rollup/plugin-node-resolve": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", - "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", - "requires": { - "@rollup/pluginutils": "^3.0.8", - "@types/resolve": "0.0.8", - "builtin-modules": "^3.1.0", - "is-module": "^1.0.0", - "resolve": "^1.14.2" + "node_modules/@jest/core/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "@rollup/plugin-replace": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", - "requires": { - "@rollup/pluginutils": "^3.1.0", - "magic-string": "^0.25.7" + "node_modules/@jest/core/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "@rollup/pluginutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", - "requires": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dependencies": { - "@types/estree": { - "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" - }, - "picomatch": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz", - "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==" - } + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", - "requires": { - "type-detect": "4.0.8" + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@sinonjs/fake-timers": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", - "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", - "requires": { - "@sinonjs/commons": "^1.7.0" + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/addon-actions": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.3.7.tgz", - "integrity": "sha512-CEAmztbVt47Gw1o6Iw0VP20tuvISCEKk9CS/rCjHtb4ubby6+j/bkp3pkEUQIbyLdHiLWFMz0ZJdyA/U6T6jCw==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/api": "6.3.7", - "@storybook/client-api": "6.3.7", - "@storybook/components": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/theming": "6.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-inspector": "^5.1.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "uuid-browser": "^3.1.0" - }, - "dependencies": { - "@storybook/addons": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.3.7.tgz", - "integrity": "sha512-9stVjTcc52bqqh7YQex/LpSjJ4e2Czm4/ZYDjIiNy0p4OZEx+yLhL5mZzMWh2NQd6vv+pHASBSxf2IeaR5511A==", - "dev": true, - "requires": { - "@storybook/api": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/theming": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "regenerator-runtime": "^0.13.7" - } - }, - "@storybook/api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.3.7.tgz", - "integrity": "sha512-57al8mxmE9agXZGo8syRQ8UhvGnDC9zkuwkBPXchESYYVkm3Mc54RTvdAOYDiy85VS4JxiGOywHayCaRwgUddQ==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "store2": "^2.12.0", - "telejson": "^5.3.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/channel-postmessage": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.3.7.tgz", - "integrity": "sha512-Cmw8HRkeSF1yUFLfEIUIkUICyCXX8x5Ol/5QPbiW9HPE2hbZtYROCcg4bmWqdq59N0Tp9FQNSn+9ZygPgqQtNw==", - "dev": true, - "requires": { - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "qs": "^6.10.0", - "telejson": "^5.3.2" - } - }, - "@storybook/channels": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.3.7.tgz", - "integrity": "sha512-aErXO+SRO8MPp2wOkT2n9d0fby+8yM35tq1tI633B4eQsM74EykbXPv7EamrYPqp1AI4BdiloyEpr0hmr2zlvg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/client-api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.3.7.tgz", - "integrity": "sha512-8wOH19cMIwIIYhZy5O5Wl8JT1QOL5kNuamp9GPmg5ff4DtnG+/uUslskRvsnKyjPvl+WbIlZtBVWBiawVdd/yQ==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@types/qs": "^6.9.5", - "@types/webpack-env": "^1.16.0", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "stable": "^0.1.8", - "store2": "^2.12.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/client-logger": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.3.7.tgz", - "integrity": "sha512-BQRErHE3nIEuUJN/3S3dO1LzxAknOgrFeZLd4UVcH/fvjtS1F4EkhcbH+jNyUWvcWGv66PZYN0oFPEn/g3Savg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "global": "^4.4.0" - } - }, - "@storybook/components": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.3.7.tgz", - "integrity": "sha512-O7LIg9Z18G0AJqXX7Shcj0uHqwXlSA5UkHgaz9A7mqqqJNl6m6FwwTWcxR1acUfYVNkO+czgpqZHNrOF6rky1A==", - "dev": true, - "requires": { - "@popperjs/core": "^2.6.0", - "@storybook/client-logger": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/theming": "6.3.7", - "@types/color-convert": "^2.0.0", - "@types/overlayscrollbars": "^1.12.0", - "@types/react-syntax-highlighter": "11.0.5", - "color-convert": "^2.0.1", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^7.1.3", - "memoizerific": "^1.11.3", - "overlayscrollbars": "^1.13.1", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-colorful": "^5.1.2", - "react-popper-tooltip": "^3.1.1", - "react-syntax-highlighter": "^13.5.3", - "react-textarea-autosize": "^8.3.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.3.7.tgz", - "integrity": "sha512-l5Hlhe+C/dqxjobemZ6DWBhTOhQoFF3F1Y4kjFGE7pGZl/mas4M72I5I/FUcYCmbk2fbLfZX8hzKkUqS1hdyLA==", - "dev": true, - "requires": { - "core-js": "^3.8.2" - } - }, - "@storybook/router": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.3.7.tgz", - "integrity": "sha512-6tthN8op7H0NoYoE1SkQFJKC42pC4tGaoPn7kEql8XGeUJnxPtVFjrnywlTrRnKuxZKIvbilQBAwDml97XH23Q==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/client-logger": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.3.7.tgz", - "integrity": "sha512-GXBdw18JJd5jLLcRonAZWvGGdwEXByxF1IFNDSOYCcpHWsMgTk4XoLjceu9MpXET04pVX51LbVPLCvMdggoohg==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@emotion/is-prop-valid": "^0.8.6", - "@emotion/styled": "^10.0.27", - "@storybook/client-logger": "6.3.7", - "core-js": "^3.8.2", - "deep-object-diff": "^1.1.0", - "emotion-theming": "^10.0.27", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "core-js": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.4.tgz", - "integrity": "sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } + "node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" } }, - "@storybook/addon-backgrounds": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-6.2.9.tgz", - "integrity": "sha512-oPSdeoUuvaXshY5sQRagbYXpr6ZEVUuLhGYBnZTlvm19QMeNCXQE+rdlgzcgyafq4mc1FI/udE2MpJ1dhfS6pQ==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/theming": "6.2.9", - "core-js": "^3.8.2", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, + "node_modules/@jest/environment/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@storybook/addon-controls": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-6.2.9.tgz", - "integrity": "sha512-NvXAJ7I5U4CLxv4wL3/Ne9rehJlgnSmQlLIG/z6dg5zm7JIb48LT4IY6GzjlUP5LkjmO9KJ8gJC249uRt2iPBQ==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/node-logger": "6.2.9", - "@storybook/theming": "6.2.9", - "core-js": "^3.8.2", - "ts-dedent": "^2.0.0" + "node_modules/@jest/environment/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/environment/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@storybook/addon-docs": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-6.2.9.tgz", - "integrity": "sha512-qOtwgiqI3LMqT0eXYNV6ykp7qSu0LQGeXxy3wOBGuDDqAizfgnAjomYEWGFcyKp5ahV7HCRCjxbixAklFPUmyw==", + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/generator": "^7.12.11", - "@babel/parser": "^7.12.11", - "@babel/plugin-transform-react-jsx": "^7.12.12", - "@babel/preset-env": "^7.12.11", - "@jest/transform": "^26.6.2", - "@mdx-js/loader": "^1.6.22", - "@mdx-js/mdx": "^1.6.22", - "@mdx-js/react": "^1.6.22", - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/builder-webpack4": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/csf": "0.0.1", - "@storybook/node-logger": "6.2.9", - "@storybook/postinstall": "6.2.9", - "@storybook/source-loader": "6.2.9", - "@storybook/theming": "6.2.9", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "core-js": "^3.8.2", - "doctrine": "^3.0.0", - "escodegen": "^2.0.0", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "html-tags": "^3.1.0", - "js-string-escape": "^1.0.1", - "loader-utils": "^2.0.0", - "lodash": "^4.17.20", - "prettier": "~2.2.1", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^14.3.2", - "regenerator-runtime": "^0.13.7", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "dependencies": { + "jest-get-type": "^29.4.3" }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/addon-essentials": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-6.2.9.tgz", - "integrity": "sha512-zXsV4e1TCkHyDwi7hew4h9eJfDW++f2BNKzTif+DAcjPUVFDp7yC17gLjS5IhOjcQk+db0UUlFSx/OrTxhy7Xw==", - "dev": true, - "requires": { - "@storybook/addon-actions": "6.2.9", - "@storybook/addon-backgrounds": "6.2.9", - "@storybook/addon-controls": "6.2.9", - "@storybook/addon-docs": "6.2.9", - "@storybook/addon-toolbars": "6.2.9", - "@storybook/addon-viewport": "6.2.9", - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/node-logger": "6.2.9", - "core-js": "^3.8.2", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0" + "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "@storybook/addon-actions": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-6.2.9.tgz", - "integrity": "sha512-CkUYSMt+fvuHfWvtDzlhhaeQBCWlUo99xdL88JTsTml05P43bIHZNIRv2QJ8DwhHuxdIPeHKLmz9y/ymOagOnw==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/theming": "6.2.9", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-inspector": "^5.1.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "uuid-browser": "^3.1.0" - } - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "@types/yargs-parser": "*" } }, - "@storybook/addon-links": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-6.2.9.tgz", - "integrity": "sha512-pBiL6EUZI3c9qtCqnGx3RXF46kAxGMdo4xDC2y3mM132W//DzxkzLZRe4ZhxxGwaLzTNlNrypZ6Li6WyIaPZ/w==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/csf": "0.0.1", - "@storybook/router": "6.2.9", - "@types/qs": "^6.9.5", - "core-js": "^3.8.2", - "global": "^4.4.0", - "prop-types": "^15.7.2", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0" + "node_modules/@jest/fake-timers/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/fake-timers/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@storybook/addon-toolbars": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-6.2.9.tgz", - "integrity": "sha512-4WjIofN5npBPNZ8v1UhzPeATB9RnAWRH/y1AVS1HB+zl6Ku92o7aOMqVxs8zR1oSSmtkHh/rcUcpATFKjuofdw==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/components": "6.2.9", - "core-js": "^3.8.2" - }, - "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "node_modules/@jest/fake-timers/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "@storybook/addon-viewport": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-6.2.9.tgz", - "integrity": "sha512-IK2mu5njmfcAT967SJtBOY2B6NPMikySZga9QuaLdSpQxPd3vXKNMVG1CjnduMLeDaAoUlvlJISeEPbYGuE+1A==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/theming": "6.2.9", - "core-js": "^3.8.2", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "prop-types": "^15.7.2", - "regenerator-runtime": "^0.13.7" - }, + "node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/addons": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.2.9.tgz", - "integrity": "sha512-GnmEKbJwiN1jncN9NSA8CuR1i2XAlasPcl/Zn0jkfV9WitQeczVcJCPw86SGH84AD+tTBCyF2i9UC0KaOV1YBQ==", - "dev": true, - "requires": { - "@storybook/api": "6.2.9", - "@storybook/channels": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/router": "6.2.9", - "@storybook/theming": "6.2.9", - "core-js": "^3.8.2", - "global": "^4.4.0", - "regenerator-runtime": "^0.13.7" - }, - "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/api": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.2.9.tgz", - "integrity": "sha512-okkA3HAScE9tGnYBrjTOcgzT+L1lRHNoEh3ZfGgh1u/XNEyHGNkj4grvkd6nX7BzRcYQ/l2VkcKCqmOjUnSkVQ==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/channels": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/csf": "0.0.1", - "@storybook/router": "6.2.9", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.2.9", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "store2": "^2.12.0", - "telejson": "^5.1.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "node_modules/@jest/fake-timers/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/fake-timers/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" - } - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@storybook/builder-webpack4": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack4/-/builder-webpack4-6.2.9.tgz", - "integrity": "sha512-swECic1huVdj+B+iRJIQ8ds59HuPVE4fmhI+j/nhw0CQCsgAEKqDlOQVYEimW6nZX8GO4WxNm6tiiRzxixejbw==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-decorators": "^7.12.12", - "@babel/plugin-proposal-export-default-from": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.12", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/preset-env": "^7.12.11", - "@babel/preset-react": "^7.12.10", - "@babel/preset-typescript": "^7.12.7", - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/channel-postmessage": "6.2.9", - "@storybook/channels": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core-common": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/node-logger": "6.2.9", - "@storybook/router": "6.2.9", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.2.9", - "@storybook/ui": "6.2.9", - "@types/node": "^14.0.10", - "@types/webpack": "^4.41.26", - "autoprefixer": "^9.8.6", - "babel-loader": "^8.2.2", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-polyfill-corejs3": "^0.1.0", - "case-sensitive-paths-webpack-plugin": "^2.3.0", - "core-js": "^3.8.2", - "css-loader": "^3.6.0", - "dotenv-webpack": "^1.8.0", - "file-loader": "^6.2.0", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^4.1.6", - "fs-extra": "^9.0.1", - "glob": "^7.1.6", - "glob-promise": "^3.4.0", - "global": "^4.4.0", - "html-webpack-plugin": "^4.0.0", - "pnp-webpack-plugin": "1.6.4", - "postcss": "^7.0.35", - "postcss-flexbugs-fixes": "^4.2.1", - "postcss-loader": "^4.2.0", - "raw-loader": "^4.0.2", - "react-dev-utils": "^11.0.3", - "stable": "^0.1.8", - "style-loader": "^1.3.0", - "terser-webpack-plugin": "^3.1.0", - "ts-dedent": "^2.0.0", - "url-loader": "^4.1.1", - "util-deprecate": "^1.0.2", - "webpack": "4", - "webpack-dev-middleware": "^3.7.3", - "webpack-filter-warnings-plugin": "^1.2.1", - "webpack-hot-middleware": "^2.25.0", - "webpack-virtual-modules": "^0.2.2" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/generator": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz", - "integrity": "sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz", - "integrity": "sha512-idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/helper-replace-supers": "^7.14.4", - "@babel/helper-split-export-declaration": "^7.12.13" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", - "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-function-name": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz", - "integrity": "sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz", - "integrity": "sha512-zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.4.tgz", - "integrity": "sha512-ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==", - "dev": true - }, - "@babel/plugin-proposal-decorators": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.14.2.tgz", - "integrity": "sha512-LauAqDd/VjQDtae58QgBcEOE42NNP+jB2OE+XeC3KBI/E+BhhRjtr5viCIrj1hmu1YvrguLipIPRJZmS5yUcFw==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.2", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-decorators": "^7.12.13" - } - }, - "@babel/preset-typescript": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz", - "integrity": "sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-validator-option": "^7.12.17", - "@babel/plugin-transform-typescript": "^7.13.0" - } - }, - "@babel/traverse": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz", - "integrity": "sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.4.tgz", - "integrity": "sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - } - } - }, - "@types/node": { - "version": "14.17.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.1.tgz", - "integrity": "sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", - "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.1.5", - "core-js-compat": "^3.8.1" - } - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "dependencies": { - "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } - } - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - } - } - }, - "postcss-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", - "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.4" - }, - "dependencies": { - "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "terser-webpack-plugin": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz", - "integrity": "sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==", - "dev": true, - "requires": { - "cacache": "^15.0.5", - "find-cache-dir": "^3.3.1", - "jest-worker": "^26.2.1", - "p-limit": "^3.0.2", - "schema-utils": "^2.6.6", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.8.0", - "webpack-sources": "^1.4.3" - }, - "dependencies": { - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - } + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/channel-postmessage": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.2.9.tgz", - "integrity": "sha512-OqV+gLeeCHR0KExsIz0B7gD17Cjd9D+I75qnBsLWM9inWO5kc/WZ5svw8Bvjlcm6snWpvxUaT8L+svuqcPSmww==", - "dev": true, - "requires": { - "@storybook/channels": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "core-js": "^3.8.2", - "global": "^4.4.0", - "qs": "^6.10.0", - "telejson": "^5.1.0" + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } + "@types/yargs-parser": "*" } }, - "@storybook/channels": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.2.9.tgz", - "integrity": "sha512-6dC8Fb2ipNyOQXnUZMDeEUaJGH5DMLzyHlGLhVyDtrO5WR6bO8mQdkzf4+5dSKXgCBNX0BSkssXth4pDjn18rg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, + "node_modules/@jest/globals/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "@storybook/client-api": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.2.9.tgz", - "integrity": "sha512-aLvEUVkbvv6Qo/2mF4rFCecdqi2CGOUDdsV1a6EFIVS/9gXFdpirsOwKHo9qNjacGdWPlBYGCUcbrw+DvNaSFA==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/channel-postmessage": "6.2.9", - "@storybook/channels": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/csf": "0.0.1", - "@types/qs": "^6.9.5", - "@types/webpack-env": "^1.16.0", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "stable": "^0.1.8", - "store2": "^2.12.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "node_modules/@jest/globals/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/globals/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/client-logger": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.2.9.tgz", - "integrity": "sha512-IfOQZuvpjh66qBInQCJOb9S0dTGpzZ/Cxlcvokp+PYt95KztaWN3mPm+HaDQCeRsrWNe0Bpm1zuickcJ6dBOXg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "global": "^4.4.0" + "node_modules/@jest/globals/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/globals/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/components": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.2.9.tgz", - "integrity": "sha512-hnV1MI2aB2g1sJ7NJphpxi7TwrMZQ/tpCJeHnkjmzyC6ez1MXqcBXGrEEdSXzRfAxjQTOEpu6H1mnns0xMP0Ag==", - "dev": true, - "requires": { - "@popperjs/core": "^2.6.0", - "@storybook/client-logger": "6.2.9", - "@storybook/csf": "0.0.1", - "@storybook/theming": "6.2.9", - "@types/color-convert": "^2.0.0", - "@types/overlayscrollbars": "^1.12.0", - "@types/react-syntax-highlighter": "11.0.5", - "color-convert": "^2.0.1", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^7.1.0", - "memoizerific": "^1.11.3", - "overlayscrollbars": "^1.13.1", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-colorful": "^5.0.1", - "react-popper-tooltip": "^3.1.1", - "react-syntax-highlighter": "^13.5.3", - "react-textarea-autosize": "^8.3.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "node_modules/@jest/globals/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "@storybook/core": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.2.9.tgz", - "integrity": "sha512-pzbyjWvj0t8m0kR2pC9GQne4sZn7Y/zfcbm6/31CL+yhzOQjfJEj3n4ZFUlxikXqQJPg1aWfypfyaeaLL0QyuA==", - "dev": true, - "requires": { - "@storybook/core-client": "6.2.9", - "@storybook/core-server": "6.2.9" + "node_modules/@jest/globals/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "@storybook/core-client": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-6.2.9.tgz", - "integrity": "sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==", - "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/channel-postmessage": "6.2.9", - "@storybook/client-api": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/csf": "0.0.1", - "@storybook/ui": "6.2.9", - "ansi-to-html": "^0.6.11", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "unfetch": "^4.2.0", - "util-deprecate": "^1.0.2" + "node_modules/@jest/globals/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true } } }, - "@storybook/core-common": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-6.2.9.tgz", - "integrity": "sha512-ve0Qb4EMit8jGibfZBprmaU2i4LtpB4vSMIzD9nB1YeBmw2cGhHubtmayZ0TwcV3fPQhtYH9wwRWuWyzzHyQyw==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-decorators": "^7.12.12", - "@babel/plugin-proposal-export-default-from": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.12", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/preset-env": "^7.12.11", - "@babel/preset-react": "^7.12.10", - "@babel/preset-typescript": "^7.12.7", - "@babel/register": "^7.12.1", - "@storybook/node-logger": "6.2.9", - "@storybook/semver": "^7.3.2", - "@types/glob-base": "^0.3.0", - "@types/micromatch": "^4.0.1", - "@types/node": "^14.0.10", - "@types/pretty-hrtime": "^1.0.0", - "babel-loader": "^8.2.2", - "babel-plugin-macros": "^3.0.1", - "babel-plugin-polyfill-corejs3": "^0.1.0", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "express": "^4.17.1", - "file-system-cache": "^1.0.5", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.0.4", - "glob": "^7.1.6", - "glob-base": "^0.3.0", - "interpret": "^2.2.0", - "json5": "^2.1.3", - "lazy-universal-dotenv": "^3.0.1", - "micromatch": "^4.0.2", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "webpack": "4" + "node_modules/@jest/reporters/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/generator": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz", - "integrity": "sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz", - "integrity": "sha512-idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.12.13", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/helper-replace-supers": "^7.14.4", - "@babel/helper-split-export-declaration": "^7.12.13" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", - "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-function-name": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz", - "integrity": "sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" - } - }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "dev": true, - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz", - "integrity": "sha512-zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, - "@babel/parser": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.4.tgz", - "integrity": "sha512-ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==", - "dev": true - }, - "@babel/plugin-proposal-decorators": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.14.2.tgz", - "integrity": "sha512-LauAqDd/VjQDtae58QgBcEOE42NNP+jB2OE+XeC3KBI/E+BhhRjtr5viCIrj1hmu1YvrguLipIPRJZmS5yUcFw==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.2", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/plugin-syntax-decorators": "^7.12.13" - } - }, - "@babel/preset-typescript": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz", - "integrity": "sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/helper-validator-option": "^7.12.17", - "@babel/plugin-transform-typescript": "^7.13.0" - } - }, - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/traverse": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz", - "integrity": "sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.4.tgz", - "integrity": "sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - } - } - }, - "@types/node": { - "version": "14.17.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.1.tgz", - "integrity": "sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", - "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.1.5", - "core-js-compat": "^3.8.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } - } - }, - "fork-ts-checker-webpack-plugin": { - "version": "6.2.10", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.2.10.tgz", - "integrity": "sha512-HveFCHWSH2WlYU1tU3PkrupvW8lNFMTfH3Jk0TfC2mtktE9ibHGcifhCsCFvj+kqlDfNIlwmNLiNqR9jnSA7OQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - } - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - } + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/core-events": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.2.9.tgz", - "integrity": "sha512-xQmbX/oYQK1QsAGN8hriXX5SUKOoTUe3L4dVaVHxJqy7MReRWJpprJmCpbAPJzWS6WCbDFfCM5kVEexHLOzJlQ==", - "dev": true, - "requires": { - "core-js": "^3.8.2" + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@storybook/core-server": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-6.2.9.tgz", - "integrity": "sha512-DzihO73pj1Ro0Y4tq9hjw2mLMUYeSRPrx7CndCOBxcTHCKQ8Kd7Dee3wJ49t5/19V7TW1+4lYR59GAy73FeOAQ==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/preset-react": "^7.12.10", - "@storybook/addons": "6.2.9", - "@storybook/builder-webpack4": "6.2.9", - "@storybook/core-client": "6.2.9", - "@storybook/core-common": "6.2.9", - "@storybook/node-logger": "6.2.9", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.2.9", - "@storybook/ui": "6.2.9", - "@types/node": "^14.0.10", - "@types/node-fetch": "^2.5.7", - "@types/pretty-hrtime": "^1.0.0", - "@types/webpack": "^4.41.26", - "airbnb-js-shims": "^2.2.1", - "babel-loader": "^8.2.2", - "better-opn": "^2.1.1", - "boxen": "^4.2.0", - "case-sensitive-paths-webpack-plugin": "^2.3.0", - "chalk": "^4.1.0", - "cli-table3": "0.6.0", - "commander": "^6.2.1", - "core-js": "^3.8.2", - "cpy": "^8.1.1", - "css-loader": "^3.6.0", - "detect-port": "^1.3.0", - "dotenv-webpack": "^1.8.0", - "express": "^4.17.1", - "file-loader": "^6.2.0", - "file-system-cache": "^1.0.5", - "find-up": "^5.0.0", - "fs-extra": "^9.0.1", - "global": "^4.4.0", - "html-webpack-plugin": "^4.0.0", - "ip": "^1.1.5", - "node-fetch": "^2.6.1", - "pnp-webpack-plugin": "1.6.4", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "regenerator-runtime": "^0.13.7", - "resolve-from": "^5.0.0", - "serve-favicon": "^2.5.0", - "style-loader": "^1.3.0", - "telejson": "^5.1.0", - "terser-webpack-plugin": "^3.1.0", - "ts-dedent": "^2.0.0", - "url-loader": "^4.1.1", - "util-deprecate": "^1.0.2", - "webpack": "4", - "webpack-dev-middleware": "^3.7.3", - "webpack-virtual-modules": "^0.2.2" - }, - "dependencies": { - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - } - } - }, - "@types/node": { - "version": "14.17.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.1.tgz", - "integrity": "sha512-/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "detect-port": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", - "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==", - "dev": true, - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" - } - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "dependencies": { - "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "dev": true - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - } - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "terser-webpack-plugin": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz", - "integrity": "sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==", - "dev": true, - "requires": { - "cacache": "^15.0.5", - "find-cache-dir": "^3.3.1", - "jest-worker": "^26.2.1", - "p-limit": "^3.0.2", - "schema-utils": "^2.6.6", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.8.0", - "webpack-sources": "^1.4.3" - }, - "dependencies": { - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - } - } - } + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "@storybook/csf": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", - "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", - "dev": true, - "requires": { - "lodash": "^4.17.15" + "node_modules/@jest/reporters/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "@storybook/csf-tools": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-6.3.7.tgz", - "integrity": "sha512-A7yGsrYwh+vwVpmG8dHpEimX021RbZd9VzoREcILH56u8atssdh/rseljyWlRes3Sr4QgtLvDB7ggoJ+XDZH7w==", - "dev": true, - "requires": { - "@babel/generator": "^7.12.11", - "@babel/parser": "^7.12.11", - "@babel/plugin-transform-react-jsx": "^7.12.12", - "@babel/preset-env": "^7.12.11", - "@babel/traverse": "^7.12.11", - "@babel/types": "^7.12.11", - "@mdx-js/mdx": "^1.6.22", - "@storybook/csf": "^0.0.1", - "core-js": "^3.8.2", - "fs-extra": "^9.0.1", - "js-string-escape": "^1.0.1", - "lodash": "^4.17.20", - "prettier": "~2.2.1", - "regenerator-runtime": "^0.13.7" + "node_modules/@jest/reporters/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", - "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", - "dev": true - }, - "@babel/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", - "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.9", - "to-fast-properties": "^2.0.0" - } - }, - "core-js": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.4.tgz", - "integrity": "sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true - } + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "@storybook/manager-webpack4": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/manager-webpack4/-/manager-webpack4-6.3.7.tgz", - "integrity": "sha512-cwUdO3oklEtx6y+ZOl2zHvflICK85emiXBQGgRcCsnwWQRBZOMh+tCgOSZj4jmISVpT52RtT9woG4jKe15KBig==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/preset-react": "^7.12.10", - "@storybook/addons": "6.3.7", - "@storybook/core-client": "6.3.7", - "@storybook/core-common": "6.3.7", - "@storybook/node-logger": "6.3.7", - "@storybook/theming": "6.3.7", - "@storybook/ui": "6.3.7", - "@types/node": "^14.0.10", - "@types/webpack": "^4.41.26", - "babel-loader": "^8.2.2", - "case-sensitive-paths-webpack-plugin": "^2.3.0", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "css-loader": "^3.6.0", - "dotenv-webpack": "^1.8.0", - "express": "^4.17.1", - "file-loader": "^6.2.0", - "file-system-cache": "^1.0.5", - "find-up": "^5.0.0", - "fs-extra": "^9.0.1", - "html-webpack-plugin": "^4.0.0", - "node-fetch": "^2.6.1", - "pnp-webpack-plugin": "1.6.4", - "read-pkg-up": "^7.0.1", - "regenerator-runtime": "^0.13.7", - "resolve-from": "^5.0.0", - "style-loader": "^1.3.0", - "telejson": "^5.3.2", - "terser-webpack-plugin": "^4.2.3", - "ts-dedent": "^2.0.0", - "url-loader": "^4.1.1", - "util-deprecate": "^1.0.2", - "webpack": "4", - "webpack-dev-middleware": "^3.7.3", - "webpack-virtual-modules": "^0.2.2" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", - "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.14.5" - } - }, - "@babel/generator": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz", - "integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==", - "dev": true, - "requires": { - "@babel/types": "^7.15.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", - "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz", - "integrity": "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.15.0", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.0", - "@babel/helper-split-export-declaration": "^7.14.5" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", - "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - } - }, - "@babel/helper-function-name": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz", - "integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==", - "dev": true, - "requires": { - "@babel/types": "^7.15.0" - } - }, - "@babel/helper-module-imports": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz", - "integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.15.0", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", - "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, - "@babel/parser": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz", - "integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==", - "dev": true - }, - "@babel/plugin-proposal-decorators": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.14.5.tgz", - "integrity": "sha512-LYz5nvQcvYeRVjui1Ykn28i+3aUiXwQ/3MGoEy0InTaz1pJo/lAzmIDXX+BQny/oufgHzJ6vnEEiXQ8KZjEVFg==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-decorators": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.14.5.tgz", - "integrity": "sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", - "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz", - "integrity": "sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.15.0", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-typescript": "^7.14.5" - } - }, - "@babel/preset-typescript": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz", - "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-transform-typescript": "^7.15.0" - } - }, - "@babel/runtime": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", - "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/traverse": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", - "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.15.0", - "@babel/types": "^7.15.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", - "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.9", - "to-fast-properties": "^2.0.0" - } - }, - "@storybook/addons": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.3.7.tgz", - "integrity": "sha512-9stVjTcc52bqqh7YQex/LpSjJ4e2Czm4/ZYDjIiNy0p4OZEx+yLhL5mZzMWh2NQd6vv+pHASBSxf2IeaR5511A==", - "dev": true, - "requires": { - "@storybook/api": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/theming": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "regenerator-runtime": "^0.13.7" - } - }, - "@storybook/api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.3.7.tgz", - "integrity": "sha512-57al8mxmE9agXZGo8syRQ8UhvGnDC9zkuwkBPXchESYYVkm3Mc54RTvdAOYDiy85VS4JxiGOywHayCaRwgUddQ==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "store2": "^2.12.0", - "telejson": "^5.3.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/channel-postmessage": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.3.7.tgz", - "integrity": "sha512-Cmw8HRkeSF1yUFLfEIUIkUICyCXX8x5Ol/5QPbiW9HPE2hbZtYROCcg4bmWqdq59N0Tp9FQNSn+9ZygPgqQtNw==", - "dev": true, - "requires": { - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "qs": "^6.10.0", - "telejson": "^5.3.2" - } - }, - "@storybook/channels": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.3.7.tgz", - "integrity": "sha512-aErXO+SRO8MPp2wOkT2n9d0fby+8yM35tq1tI633B4eQsM74EykbXPv7EamrYPqp1AI4BdiloyEpr0hmr2zlvg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/client-api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.3.7.tgz", - "integrity": "sha512-8wOH19cMIwIIYhZy5O5Wl8JT1QOL5kNuamp9GPmg5ff4DtnG+/uUslskRvsnKyjPvl+WbIlZtBVWBiawVdd/yQ==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@types/qs": "^6.9.5", - "@types/webpack-env": "^1.16.0", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "stable": "^0.1.8", - "store2": "^2.12.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/client-logger": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.3.7.tgz", - "integrity": "sha512-BQRErHE3nIEuUJN/3S3dO1LzxAknOgrFeZLd4UVcH/fvjtS1F4EkhcbH+jNyUWvcWGv66PZYN0oFPEn/g3Savg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "global": "^4.4.0" - } - }, - "@storybook/components": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.3.7.tgz", - "integrity": "sha512-O7LIg9Z18G0AJqXX7Shcj0uHqwXlSA5UkHgaz9A7mqqqJNl6m6FwwTWcxR1acUfYVNkO+czgpqZHNrOF6rky1A==", - "dev": true, - "requires": { - "@popperjs/core": "^2.6.0", - "@storybook/client-logger": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/theming": "6.3.7", - "@types/color-convert": "^2.0.0", - "@types/overlayscrollbars": "^1.12.0", - "@types/react-syntax-highlighter": "11.0.5", - "color-convert": "^2.0.1", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^7.1.3", - "memoizerific": "^1.11.3", - "overlayscrollbars": "^1.13.1", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-colorful": "^5.1.2", - "react-popper-tooltip": "^3.1.1", - "react-syntax-highlighter": "^13.5.3", - "react-textarea-autosize": "^8.3.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "dependencies": { - "markdown-to-jsx": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.1.3.tgz", - "integrity": "sha512-jtQ6VyT7rMT5tPV0g2EJakEnXLiPksnvlYtwQsVVZ611JsWGN8bQ1tVSDX4s6JllfEH6wmsYxNjTUAMrPmNA8w==", - "dev": true - } - } - }, - "@storybook/core-client": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-6.3.7.tgz", - "integrity": "sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/client-api": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/ui": "6.3.7", - "airbnb-js-shims": "^2.2.1", - "ansi-to-html": "^0.6.11", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "unfetch": "^4.2.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-common": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-6.3.7.tgz", - "integrity": "sha512-exLoqRPPsAefwyjbsQBLNFrlPCcv69Q/pclqmIm7FqAPR7f3CKP1rqsHY0PnemizTL/+cLX5S7mY90gI6wpNug==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-decorators": "^7.12.12", - "@babel/plugin-proposal-export-default-from": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.12", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/preset-env": "^7.12.11", - "@babel/preset-react": "^7.12.10", - "@babel/preset-typescript": "^7.12.7", - "@babel/register": "^7.12.1", - "@storybook/node-logger": "6.3.7", - "@storybook/semver": "^7.3.2", - "@types/glob-base": "^0.3.0", - "@types/micromatch": "^4.0.1", - "@types/node": "^14.0.10", - "@types/pretty-hrtime": "^1.0.0", - "babel-loader": "^8.2.2", - "babel-plugin-macros": "^3.0.1", - "babel-plugin-polyfill-corejs3": "^0.1.0", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "express": "^4.17.1", - "file-system-cache": "^1.0.5", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.0.4", - "glob": "^7.1.6", - "glob-base": "^0.3.0", - "interpret": "^2.2.0", - "json5": "^2.1.3", - "lazy-universal-dotenv": "^3.0.1", - "micromatch": "^4.0.2", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "webpack": "4" - } - }, - "@storybook/core-events": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.3.7.tgz", - "integrity": "sha512-l5Hlhe+C/dqxjobemZ6DWBhTOhQoFF3F1Y4kjFGE7pGZl/mas4M72I5I/FUcYCmbk2fbLfZX8hzKkUqS1hdyLA==", - "dev": true, - "requires": { - "core-js": "^3.8.2" - } - }, - "@storybook/node-logger": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.3.7.tgz", - "integrity": "sha512-YXHCblruRe6HcNefDOpuXJoaybHnnSryIVP9Z+gDv6OgLAMkyxccTIaQL9dbc/eI4ywgzAz4kD8t1RfVwXNVXw==", - "dev": true, - "requires": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "npmlog": "^4.1.2", - "pretty-hrtime": "^1.0.3" - } - }, - "@storybook/router": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.3.7.tgz", - "integrity": "sha512-6tthN8op7H0NoYoE1SkQFJKC42pC4tGaoPn7kEql8XGeUJnxPtVFjrnywlTrRnKuxZKIvbilQBAwDml97XH23Q==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/client-logger": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.3.7.tgz", - "integrity": "sha512-GXBdw18JJd5jLLcRonAZWvGGdwEXByxF1IFNDSOYCcpHWsMgTk4XoLjceu9MpXET04pVX51LbVPLCvMdggoohg==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@emotion/is-prop-valid": "^0.8.6", - "@emotion/styled": "^10.0.27", - "@storybook/client-logger": "6.3.7", - "core-js": "^3.8.2", - "deep-object-diff": "^1.1.0", - "emotion-theming": "^10.0.27", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/ui": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.3.7.tgz", - "integrity": "sha512-PBeRO8qtwAbtHvxUgNtz/ChUR6qnN+R37dMaIs3Y96jbks1fS2K9Mt7W5s1HnUbWbg2KsZMv9D4VYPBasY+Isw==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@storybook/addons": "6.3.7", - "@storybook/api": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/components": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@types/markdown-to-jsx": "^6.11.3", - "copy-to-clipboard": "^3.3.1", - "core-js": "^3.8.2", - "core-js-pure": "^3.8.2", - "downshift": "^6.0.15", - "emotion-theming": "^10.0.27", - "fuse.js": "^3.6.1", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^6.11.4", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "qs": "^6.10.0", - "react-draggable": "^4.4.3", - "react-helmet-async": "^1.0.7", - "react-sizeme": "^3.0.1", - "regenerator-runtime": "^0.13.7", - "resolve-from": "^5.0.0", - "store2": "^2.12.0" - } - }, - "@types/node": { - "version": "14.17.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.14.tgz", - "integrity": "sha512-rsAj2u8Xkqfc332iXV12SqIsjVi07H479bOP4q94NAcjzmAvapumEhuVIt53koEf7JFrpjgNKjBga5Pnn/GL8A==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", - "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.1.5", - "core-js-compat": "^3.8.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "core-js": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.4.tgz", - "integrity": "sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==", - "dev": true - }, - "core-js-pure": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.4.tgz", - "integrity": "sha512-bY1K3/1Jy9D8Jd12eoeVahNXHLfHFb4TXWI8SQ4y8bImR9qDPmGITBAfmcffTkgUvbJn87r8dILOTWW5kZzkgA==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "dependencies": { - "@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } - } - }, - "fork-ts-checker-webpack-plugin": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.2.tgz", - "integrity": "sha512-L3n1lrV20pRa7ocAuM2YW4Ux1yHM8+dV4shqPdHf1xoeG5KQhp3o0YySvNsBKBISQOCN4N2Db9DV4xYN6xXwyQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "markdown-to-jsx": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", - "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "dev": true, - "requires": { - "prop-types": "^15.6.2", - "unquote": "^1.1.0" - } - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "dev": true - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } - }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - } + "node_modules/@jest/reporters/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "@storybook/node-logger": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.2.9.tgz", - "integrity": "sha512-ryRBChWZf1A5hOVONErJZosS25IdMweoMVFAUAcj91iC0ynoSA6YL2jmoE71jQchxEXEgkDeRkX9lR/GlqFGZQ==", - "dev": true, - "requires": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "npmlog": "^4.1.2", - "pretty-hrtime": "^1.0.3" + "node_modules/@jest/reporters/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/reporters/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@storybook/postinstall": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-6.2.9.tgz", - "integrity": "sha512-HjAjXZV+WItonC7lVrfrUsQuRFZNz1g1lE0GgsEK2LdC5rAcD/JwJxjiWREwY+RGxKL9rpWgqyxVQajpIJRjhA==", - "dev": true, - "requires": { - "core-js": "^3.8.2" + "node_modules/@jest/reporters/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/@jest/reporters/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/reporters/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "@storybook/preset-create-react-app": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@storybook/preset-create-react-app/-/preset-create-react-app-3.2.0.tgz", - "integrity": "sha512-lLoWCGr5cV+JNDRKYHC2gD+P2eyBqdN8qhmBa+PxDgPSNKfgUf9Wnoh+C7WTG5q2DEeR9SvUpQpZomX9DDQa4Q==", + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", "dev": true, - "requires": { - "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", - "@types/babel__core": "^7.1.7", - "@types/webpack": "^4.41.13", - "babel-plugin-react-docgen": "^4.1.0", - "pnp-webpack-plugin": "^1.6.4", - "react-docgen-typescript-plugin": "^1.0.0", - "semver": "^7.3.5" + "dependencies": { + "@sinclair/typebox": "^0.25.16" }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dependencies": { - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "react-docgen-typescript-plugin": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.0.tgz", - "integrity": "sha512-Akc7EtryOA4d2yOX27B5ii+hyf/k15ymb01uB+VnRgtTAdfeDCmNPvyLbRJ6pRNYOuFlEBe1YfCH73bTPtpYVQ==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "endent": "^2.0.1", - "find-cache-dir": "^3.3.1", - "flat-cache": "^3.0.4", - "micromatch": "^4.0.2", - "react-docgen-typescript": "^1.22.0", - "tslib": "^2.0.0", - "webpack-sources": "^2.2.0" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", - "dev": true - }, - "webpack-sources": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", - "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", - "dev": true, - "requires": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" - } - } + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "@storybook/react": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-6.3.7.tgz", - "integrity": "sha512-4S0iCQIzgi6PdAtV2sYw4uL57yIwbMInNFSux9CxPnVdlxOxCJ+U8IgTxD4tjkTvR4boYSEvEle46ns/bwg5iQ==", - "dev": true, - "requires": { - "@babel/preset-flow": "^7.12.1", - "@babel/preset-react": "^7.12.10", - "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", - "@storybook/addons": "6.3.7", - "@storybook/core": "6.3.7", - "@storybook/core-common": "6.3.7", - "@storybook/node-logger": "6.3.7", - "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.253f8c1.0", - "@storybook/semver": "^7.3.2", - "@types/webpack-env": "^1.16.0", - "babel-plugin-add-react-displayname": "^0.0.5", - "babel-plugin-named-asset-import": "^0.3.1", - "babel-plugin-react-docgen": "^4.2.1", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "prop-types": "^15.7.2", - "react-dev-utils": "^11.0.3", - "react-refresh": "^0.8.3", - "read-pkg-up": "^7.0.1", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "webpack": "4" + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dependencies": { - "@babel/code-frame": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", - "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.14.5" - } - }, - "@babel/generator": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz", - "integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==", - "dev": true, - "requires": { - "@babel/types": "^7.15.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", - "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz", - "integrity": "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.15.0", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.0", - "@babel/helper-split-export-declaration": "^7.14.5" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", - "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", - "dev": true, - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - } - }, - "@babel/helper-function-name": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz", - "integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==", - "dev": true, - "requires": { - "@babel/types": "^7.15.0" - } - }, - "@babel/helper-module-imports": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", - "dev": true - }, - "@babel/helper-replace-supers": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz", - "integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.15.0", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", - "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, - "@babel/parser": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz", - "integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==", - "dev": true - }, - "@babel/plugin-proposal-decorators": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.14.5.tgz", - "integrity": "sha512-LYz5nvQcvYeRVjui1Ykn28i+3aUiXwQ/3MGoEy0InTaz1pJo/lAzmIDXX+BQny/oufgHzJ6vnEEiXQ8KZjEVFg==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-decorators": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.14.5.tgz", - "integrity": "sha512-c4sZMRWL4GSvP1EXy0woIP7m4jkVcEuG8R1TOZxPBPtp4FSM/kiPZub9UIs/Jrb5ZAOzvTUSGYrWsrSu1JvoPw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", - "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz", - "integrity": "sha512-WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.15.0", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/plugin-syntax-typescript": "^7.14.5" - } - }, - "@babel/preset-typescript": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz", - "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-transform-typescript": "^7.15.0" - } - }, - "@babel/runtime": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", - "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/traverse": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", - "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.15.0", - "@babel/types": "^7.15.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", - "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.9", - "to-fast-properties": "^2.0.0" - } - }, - "@storybook/addons": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-6.3.7.tgz", - "integrity": "sha512-9stVjTcc52bqqh7YQex/LpSjJ4e2Czm4/ZYDjIiNy0p4OZEx+yLhL5mZzMWh2NQd6vv+pHASBSxf2IeaR5511A==", - "dev": true, - "requires": { - "@storybook/api": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/theming": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "regenerator-runtime": "^0.13.7" - } + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-result/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/test-result/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/test-result/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-result/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-sequencer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/test-sequencer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/test-sequencer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/test-sequencer/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/transform/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", + "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@juggle/resize-observer": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==", + "dev": true + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "node_modules/@lingui/babel-plugin-extract-messages": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-extract-messages/-/babel-plugin-extract-messages-3.17.2.tgz", + "integrity": "sha512-Ovhf8a6dBlIZJFOqk6/+LRgQvSlVMol6hxvnVGLsCr/0xNcKlpGUAJ+bvY6NrmxZubpTvZqNkH23u5nEAdXtfg==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.20.14", + "@babel/runtime": "^7.20.13", + "@lingui/conf": "3.17.2", + "mkdirp": "^1.0.4" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@lingui/babel-plugin-extract-messages/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lingui/babel-plugin-transform-js": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-transform-js/-/babel-plugin-transform-js-2.9.2.tgz", + "integrity": "sha512-yWoyhOfjRa9744TbVb/WN1OWxZYFLuXcWH5aVCu/sZ2b1YpsGCtfhplc5lRVWN8QcsfpjYmFiPqzU6swE5OFdQ==", + "deprecated": "package deprecated, use @lingui/macro instead", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@lingui/babel-plugin-transform-react": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@lingui/babel-plugin-transform-react/-/babel-plugin-transform-react-2.9.2.tgz", + "integrity": "sha512-bxvrepiS6J9vZqRtpRiAgBIASQscjvu7aFmPqH4Y6001TDXrYuyhhNRt1BI3k2E6C2SckHh5vRtSpsqpjEiY3A==", + "deprecated": "package deprecated, use @lingui/macro instead", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@lingui/babel-preset-react": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/@lingui/babel-preset-react/-/babel-preset-react-2.9.2.tgz", + "integrity": "sha512-M+nfK/83+FnLEr63bBox5DKsSYgwPPmhfiLJAbc2BZBlmF1Nfqv/dHL+d2ynyEKNKCSVts476eDeiOFwv2MTNw==", + "deprecated": "package deprecated, use @lingui/macro instead", + "dev": true, + "dependencies": { + "@lingui/babel-plugin-transform-js": "2.9.2", + "@lingui/babel-plugin-transform-react": "2.9.2" + } + }, + "node_modules/@lingui/cli": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/cli/-/cli-3.17.2.tgz", + "integrity": "sha512-8hPZOfwB7KZolZ01diUqtprKva1RNAUUNdzISN9pmAUGw9zCPRY/dlOvM6obZi8v0VC/JKrcadOs4Z8krIS2QQ==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.20.14", + "@babel/parser": "^7.20.15", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "@lingui/babel-plugin-extract-messages": "3.17.2", + "@lingui/conf": "3.17.2", + "@lingui/core": "3.17.2", + "@messageformat/parser": "^5.0.0", + "babel-plugin-macros": "^3.0.1", + "bcp-47": "^1.0.7", + "chalk": "^4.1.0", + "chokidar": "3.5.1", + "cli-table": "0.3.6", + "commander": "^6.1.0", + "date-fns": "^2.16.1", + "fs-extra": "^9.0.1", + "fuzzaldrin": "^2.1.0", + "glob": "^7.1.4", + "inquirer": "^7.3.3", + "make-plural": "^6.2.2", + "micromatch": "4.0.2", + "mkdirp": "^1.0.4", + "node-gettext": "^3.0.0", + "normalize-path": "^3.0.0", + "ora": "^5.1.0", + "papaparse": "^5.3.0", + "pkg-up": "^3.1.0", + "plurals-cldr": "^1.0.4", + "pofile": "^1.1.0", + "pseudolocale": "^1.1.0", + "ramda": "^0.27.1" + }, + "bin": { + "lingui": "build/lingui.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "babel-plugin-macros": "2 || 3", + "typescript": "2 || 3 || 4" + } + }, + "node_modules/@lingui/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@lingui/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@lingui/cli/node_modules/chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.1" + } + }, + "node_modules/@lingui/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@lingui/cli/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lingui/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lingui/cli/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@lingui/cli/node_modules/readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/@lingui/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lingui/conf": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/conf/-/conf-3.17.2.tgz", + "integrity": "sha512-q3ADfpMYCYMgiu/lrYOOvE3ptxXIqYhA1ozyAq6ynguL8ppqfyaTluLoHfVJVWxnTMI/es9s2W9Kg81QH+nuXQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "cosmiconfig-typescript-loader": "^4.3.0", + "jest-validate": "^26.5.2", + "lodash.get": "^4.4.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "ts-node": ">=10", + "typescript": ">=4" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true }, - "@storybook/api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-6.3.7.tgz", - "integrity": "sha512-57al8mxmE9agXZGo8syRQ8UhvGnDC9zkuwkBPXchESYYVkm3Mc54RTvdAOYDiy85VS4JxiGOywHayCaRwgUddQ==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "store2": "^2.12.0", - "telejson": "^5.3.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } + "typescript": { + "optional": true + } + } + }, + "node_modules/@lingui/conf/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@lingui/conf/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@lingui/conf/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@lingui/conf/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@lingui/core": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/core/-/core-3.17.2.tgz", + "integrity": "sha512-YOd068NanznN8lLQqOKPlAY0ill3rrgmiAvPRKuYkrxzJMIHqlIFO/2Kcc/RH5vClOmLfg+wgR4rsHK/kLKelQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@messageformat/parser": "^5.0.0", + "make-plural": "^6.2.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@lingui/macro": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/macro/-/macro-3.17.2.tgz", + "integrity": "sha512-kk1ZtwYSx5Knu/5LsRGisTqfNoLIeVkJJPn6xjZXcItoxUgRsykyKb3BqCJwxqYUClz4i4A8Ld/aA4xBi4apRQ==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "@lingui/conf": "3.17.2", + "ramda": "^0.27.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "@lingui/core": "^3.13.0", + "@lingui/react": "^3.13.0", + "babel-plugin-macros": "2 || 3" + } + }, + "node_modules/@lingui/react": { + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/@lingui/react/-/react-3.17.2.tgz", + "integrity": "sha512-+PECPknIiQn/zdXgrXVTCbcJUSjPFZTtPOuIO72huGNh/QA+iRVsGTvef0/Q+pWkiPEOU6CmaGHkwdtgFMtJ8g==", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@lingui/core": "3.17.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "optional": true, + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "optional": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "optional": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "optional": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "optional": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "optional": true + }, + "node_modules/@mdx-js/react": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz", + "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==", + "dev": true, + "dependencies": { + "@types/mdx": "^2.0.0", + "@types/react": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "react": ">=16" + } + }, + "node_modules/@messageformat/parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@messageformat/parser/-/parser-5.0.0.tgz", + "integrity": "sha512-WiDKhi8F0zQaFU8cXgqq69eYFarCnTVxKcvhAONufKf0oUxbqLMW6JX6rV4Hqh+BEQWGyKKKHY4g1XA6bCLylA==", + "dependencies": { + "moo": "^0.5.1" + } + }, + "node_modules/@ndelangen/get-tarball": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", + "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", + "dependencies": { + "gunzip-maybe": "^1.4.2", + "pump": "^3.0.0", + "tar-fs": "^2.1.1" + } + }, + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "optional": true + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <4.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true }, - "@storybook/builder-webpack4": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack4/-/builder-webpack4-6.3.7.tgz", - "integrity": "sha512-M5envblMzAUrNqP1+ouKiL8iSIW/90+kBRU2QeWlZoZl1ib+fiFoKk06cgbaC70Bx1lU8nOnI/VBvB5pLhXLaw==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-decorators": "^7.12.12", - "@babel/plugin-proposal-export-default-from": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.12", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/preset-env": "^7.12.11", - "@babel/preset-react": "^7.12.10", - "@babel/preset-typescript": "^7.12.7", - "@storybook/addons": "6.3.7", - "@storybook/api": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-api": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/components": "6.3.7", - "@storybook/core-common": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/node-logger": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@storybook/ui": "6.3.7", - "@types/node": "^14.0.10", - "@types/webpack": "^4.41.26", - "autoprefixer": "^9.8.6", - "babel-loader": "^8.2.2", - "babel-plugin-macros": "^2.8.0", - "babel-plugin-polyfill-corejs3": "^0.1.0", - "case-sensitive-paths-webpack-plugin": "^2.3.0", - "core-js": "^3.8.2", - "css-loader": "^3.6.0", - "dotenv-webpack": "^1.8.0", - "file-loader": "^6.2.0", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^4.1.6", - "fs-extra": "^9.0.1", - "glob": "^7.1.6", - "glob-promise": "^3.4.0", - "global": "^4.4.0", - "html-webpack-plugin": "^4.0.0", - "pnp-webpack-plugin": "1.6.4", - "postcss": "^7.0.36", - "postcss-flexbugs-fixes": "^4.2.1", - "postcss-loader": "^4.2.0", - "raw-loader": "^4.0.2", - "react-dev-utils": "^11.0.3", - "stable": "^0.1.8", - "style-loader": "^1.3.0", - "terser-webpack-plugin": "^4.2.3", - "ts-dedent": "^2.0.0", - "url-loader": "^4.1.1", - "util-deprecate": "^1.0.2", - "webpack": "4", - "webpack-dev-middleware": "^3.7.3", - "webpack-filter-warnings-plugin": "^1.2.1", - "webpack-hot-middleware": "^2.25.0", - "webpack-virtual-modules": "^0.2.2" - } + "sockjs-client": { + "optional": true }, - "@storybook/channel-postmessage": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-6.3.7.tgz", - "integrity": "sha512-Cmw8HRkeSF1yUFLfEIUIkUICyCXX8x5Ol/5QPbiW9HPE2hbZtYROCcg4bmWqdq59N0Tp9FQNSn+9ZygPgqQtNw==", - "dev": true, - "requires": { - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "core-js": "^3.8.2", - "global": "^4.4.0", - "qs": "^6.10.0", - "telejson": "^5.3.2" - } + "type-fest": { + "optional": true }, - "@storybook/channels": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-6.3.7.tgz", - "integrity": "sha512-aErXO+SRO8MPp2wOkT2n9d0fby+8yM35tq1tI633B4eQsM74EykbXPv7EamrYPqp1AI4BdiloyEpr0hmr2zlvg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } + "webpack-dev-server": { + "optional": true }, - "@storybook/client-api": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-6.3.7.tgz", - "integrity": "sha512-8wOH19cMIwIIYhZy5O5Wl8JT1QOL5kNuamp9GPmg5ff4DtnG+/uUslskRvsnKyjPvl+WbIlZtBVWBiawVdd/yQ==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@types/qs": "^6.9.5", - "@types/webpack-env": "^1.16.0", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "stable": "^0.1.8", - "store2": "^2.12.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } + "webpack-hot-middleware": { + "optional": true }, - "@storybook/client-logger": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-6.3.7.tgz", - "integrity": "sha512-BQRErHE3nIEuUJN/3S3dO1LzxAknOgrFeZLd4UVcH/fvjtS1F4EkhcbH+jNyUWvcWGv66PZYN0oFPEn/g3Savg==", - "dev": true, - "requires": { - "core-js": "^3.8.2", - "global": "^4.4.0" - } + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rc-component/color-picker": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-1.1.1.tgz", + "integrity": "sha512-MKYqgEncpISQiZIaj8ykcdzZewgjslEfDo2iHg627jPnt+DbWIKG1T8MS55qXjuxkokgL0cNueyGnOndfaaNKw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@ctrl/tinycolor": "^3.6.0", + "classnames": "^2.2.6", + "rc-util": "^5.30.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/context": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-1.3.0.tgz", + "integrity": "sha512-6QdaCJ7Wn5UZLJs15IEfqy4Ru3OaL5ctqpQYWd5rlfV9wwzrzdt6+kgAQZV/qdB0MUPN4nhyBfRembQCIvBf+w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/mini-decimal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.0.1.tgz", + "integrity": "sha512-9N8nRk0oKj1qJzANKl+n9eNSMUGsZtjwNuDCiZ/KA+dt1fE3zq5x2XxclRcAbOIXnZcJ53ozP2Pa60gyELXagA==", + "dependencies": { + "@babel/runtime": "^7.18.0" + }, + "engines": { + "node": ">=8.x" + } + }, + "node_modules/@rc-component/mutate-observer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-1.0.0.tgz", + "integrity": "sha512-okqRJSfNisXdI6CUeOLZC5ukBW/8kir2Ii4PJiKpUt+3+uS7dxwJUMxsUZquxA1rQuL8YcEmKVp/TCnR+yUdZA==", + "dependencies": { + "@babel/runtime": "^7.18.0", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/portal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-1.1.1.tgz", + "integrity": "sha512-m8w3dFXX0H6UkJ4wtfrSwhe2/6M08uz24HHrF8pWfAXPwA9hwCuTE5per/C86KwNLouRpwFGcr7LfpHaa1F38g==", + "dependencies": { + "@babel/runtime": "^7.18.0", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/tour": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-1.8.0.tgz", + "integrity": "sha512-rrRGioHTLQlGca27G2+lw7QpRb3uuMYCUIJjj31/B44VCJS0P2tqYhOgtzvWQmaLMlWH3ZlpzotkKX13NT4XEA==", + "dependencies": { + "@babel/runtime": "^7.18.0", + "@rc-component/portal": "^1.0.0-9", + "@rc-component/trigger": "^1.3.6", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/trigger": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-1.13.3.tgz", + "integrity": "sha512-CA4s8QGj2kagp8dmYRVcSIW5IErw/YBxSeFEsQmt6SB0oaj9pj+akkB6O0S/Y6ww5JrIDu9Bukq89se1oW9F3w==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@rc-component/portal": "^1.1.0", + "classnames": "^2.3.2", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-resize-observer": "^1.3.1", + "rc-util": "^5.31.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz", + "integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@storybook/addon-actions": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.18.tgz", + "integrity": "sha512-3M5AU/ZD79YP88vKlFezIJbIoG/II7wCixUBTmwiC3BeQZDuVsqPNl8eiP6MGT70xwyx7a993lSM5f5N5W93vg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "polished": "^4.2.2", + "prop-types": "^15.7.2", + "react-inspector": "^6.0.0", + "telejson": "^7.0.3", + "ts-dedent": "^2.0.0", + "uuid": "^9.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/components": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-6.3.7.tgz", - "integrity": "sha512-O7LIg9Z18G0AJqXX7Shcj0uHqwXlSA5UkHgaz9A7mqqqJNl6m6FwwTWcxR1acUfYVNkO+czgpqZHNrOF6rky1A==", - "dev": true, - "requires": { - "@popperjs/core": "^2.6.0", - "@storybook/client-logger": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/theming": "6.3.7", - "@types/color-convert": "^2.0.0", - "@types/overlayscrollbars": "^1.12.0", - "@types/react-syntax-highlighter": "11.0.5", - "color-convert": "^2.0.1", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^7.1.3", - "memoizerific": "^1.11.3", - "overlayscrollbars": "^1.13.1", - "polished": "^4.0.5", - "prop-types": "^15.7.2", - "react-colorful": "^5.1.2", - "react-popper-tooltip": "^3.1.1", - "react-syntax-highlighter": "^13.5.3", - "react-textarea-autosize": "^8.3.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "dependencies": { - "markdown-to-jsx": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.1.3.tgz", - "integrity": "sha512-jtQ6VyT7rMT5tPV0g2EJakEnXLiPksnvlYtwQsVVZ611JsWGN8bQ1tVSDX4s6JllfEH6wmsYxNjTUAMrPmNA8w==", - "dev": true - } - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-backgrounds": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.18.tgz", + "integrity": "sha512-cPQy1Ot7Urf4hQz+xnF1YKrqSyR0DRwozBmF+sGzceACWmueFl0CifYZC8RSmaiIyVh0RyWPxZ9F/eT67NX2lA==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "memoizerific": "^1.11.3", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/core": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core/-/core-6.3.7.tgz", - "integrity": "sha512-YTVLPXqgyBg7TALNxQ+cd+GtCm/NFjxr/qQ1mss1T9GCMR0IjE0d0trgOVHHLAO8jCVlK8DeuqZCCgZFTXulRw==", - "dev": true, - "requires": { - "@storybook/core-client": "6.3.7", - "@storybook/core-server": "6.3.7" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-controls": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.18.tgz", + "integrity": "sha512-mD6DE52CCMKugXk2Uab0QxwgfE76kFJroxASmnePnXUNWfP9EZJpJXYE3cyyBbmZuxa46VHDGGEGXQWRl4+Eog==", + "dev": true, + "dependencies": { + "@storybook/blocks": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-common": "7.0.18", + "@storybook/manager-api": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "lodash": "^4.17.21", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/core-client": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-6.3.7.tgz", - "integrity": "sha512-M/4A65yV+Y4lsCQXX4BtQO/i3BcMPrU5FkDG8qJd3dkcx2fUlFvGWqQPkcTZE+MPVvMEGl/AsEZSADzah9+dAg==", - "dev": true, - "requires": { - "@storybook/addons": "6.3.7", - "@storybook/channel-postmessage": "6.3.7", - "@storybook/client-api": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/csf": "0.0.1", - "@storybook/ui": "6.3.7", - "airbnb-js-shims": "^2.2.1", - "ansi-to-html": "^0.6.11", - "core-js": "^3.8.2", - "global": "^4.4.0", - "lodash": "^4.17.20", - "qs": "^6.10.0", - "regenerator-runtime": "^0.13.7", - "ts-dedent": "^2.0.0", - "unfetch": "^4.2.0", - "util-deprecate": "^1.0.2" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-docs": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.18.tgz", + "integrity": "sha512-oq+ZN5809gIRdTZQIpeK1F8BJtL1/VWo9rWvl6ymVOL/Xzdgd7AOfKf9Y99X35RcxAGysRIHLGJjF4bgLoY1Aw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.2", + "@babel/plugin-transform-react-jsx": "^7.19.0", + "@jest/transform": "^29.3.1", + "@mdx-js/react": "^2.1.5", + "@storybook/blocks": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/csf-plugin": "7.0.18", + "@storybook/csf-tools": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.0.18", + "@storybook/postinstall": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/react-dom-shim": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "fs-extra": "^11.1.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/addon-essentials": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.18.tgz", + "integrity": "sha512-0XXu7xhtRefA1WxxorKk6BWeeB+7gQ+r2+bG1zQEfBgDYPR06YbPw4H79IZ8JiR97aJRsZBK5UUhOZMDrc5zcQ==", + "dev": true, + "dependencies": { + "@storybook/addon-actions": "7.0.18", + "@storybook/addon-backgrounds": "7.0.18", + "@storybook/addon-controls": "7.0.18", + "@storybook/addon-docs": "7.0.18", + "@storybook/addon-highlight": "7.0.18", + "@storybook/addon-measure": "7.0.18", + "@storybook/addon-outline": "7.0.18", + "@storybook/addon-toolbars": "7.0.18", + "@storybook/addon-viewport": "7.0.18", + "@storybook/core-common": "7.0.18", + "@storybook/manager-api": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/preview-api": "7.0.18", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/addon-highlight": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.18.tgz", + "integrity": "sha512-a3nfUhbu6whoDclIZSV/fzLj132tNNjV05ENTpuN3JpLoMd3+obDUWzeQUs9TetK4RBRN3ewM7sIMEI4oBpgmg==", + "dev": true, + "dependencies": { + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-links": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.18.tgz", + "integrity": "sha512-xEwflt7bp9FRoZVeqPGb6d3s2Gh+/jaSmnyIxMxrBy2oovKIqu9ptolqz1AhjFOXfaLs9c2RAmJUuFZJtETLxA==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/router": "7.0.18", + "@storybook/types": "7.0.18", + "prop-types": "^15.7.2", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/core-common": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-6.3.7.tgz", - "integrity": "sha512-exLoqRPPsAefwyjbsQBLNFrlPCcv69Q/pclqmIm7FqAPR7f3CKP1rqsHY0PnemizTL/+cLX5S7mY90gI6wpNug==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-decorators": "^7.12.12", - "@babel/plugin-proposal-export-default-from": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.7", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.12", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/preset-env": "^7.12.11", - "@babel/preset-react": "^7.12.10", - "@babel/preset-typescript": "^7.12.7", - "@babel/register": "^7.12.1", - "@storybook/node-logger": "6.3.7", - "@storybook/semver": "^7.3.2", - "@types/glob-base": "^0.3.0", - "@types/micromatch": "^4.0.1", - "@types/node": "^14.0.10", - "@types/pretty-hrtime": "^1.0.0", - "babel-loader": "^8.2.2", - "babel-plugin-macros": "^3.0.1", - "babel-plugin-polyfill-corejs3": "^0.1.0", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "express": "^4.17.1", - "file-system-cache": "^1.0.5", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.0.4", - "glob": "^7.1.6", - "glob-base": "^0.3.0", - "interpret": "^2.2.0", - "json5": "^2.1.3", - "lazy-universal-dotenv": "^3.0.1", - "micromatch": "^4.0.2", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "webpack": "4" - }, - "dependencies": { - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "fork-ts-checker-webpack-plugin": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.2.tgz", - "integrity": "sha512-L3n1lrV20pRa7ocAuM2YW4Ux1yHM8+dV4shqPdHf1xoeG5KQhp3o0YySvNsBKBISQOCN4N2Db9DV4xYN6xXwyQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - } - } - }, - "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-measure": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.18.tgz", + "integrity": "sha512-iu8vQpGOA+CFYbWR6QNshj20o33OQ/xcTbp5P4U6xGYDUliUBbwJ2KLxcKlmIeBanBrBdz0jPFtHwY4dM1ZdKw==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/types": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/core-events": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-6.3.7.tgz", - "integrity": "sha512-l5Hlhe+C/dqxjobemZ6DWBhTOhQoFF3F1Y4kjFGE7pGZl/mas4M72I5I/FUcYCmbk2fbLfZX8hzKkUqS1hdyLA==", - "dev": true, - "requires": { - "core-js": "^3.8.2" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-outline": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.18.tgz", + "integrity": "sha512-3vNWO7ezo6GIvidbz8JxFrKtfVEoTQN7tnZx+wpqmCF8ihBORewkpeMUnvgb9ZKjD0X7gE8eQvvG8KKWcyHDBQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/types": "7.0.18", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/core-server": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-6.3.7.tgz", - "integrity": "sha512-m5OPD/rmZA7KFewkXzXD46/i1ngUoFO4LWOiAY/wR6RQGjYXGMhSa5UYFF6MNwSbiGS5YieHkR5crB1HP47AhQ==", - "dev": true, - "requires": { - "@storybook/builder-webpack4": "6.3.7", - "@storybook/core-client": "6.3.7", - "@storybook/core-common": "6.3.7", - "@storybook/csf-tools": "6.3.7", - "@storybook/manager-webpack4": "6.3.7", - "@storybook/node-logger": "6.3.7", - "@storybook/semver": "^7.3.2", - "@types/node": "^14.0.10", - "@types/node-fetch": "^2.5.7", - "@types/pretty-hrtime": "^1.0.0", - "@types/webpack": "^4.41.26", - "better-opn": "^2.1.1", - "boxen": "^4.2.0", - "chalk": "^4.1.0", - "cli-table3": "0.6.0", - "commander": "^6.2.1", - "compression": "^1.7.4", - "core-js": "^3.8.2", - "cpy": "^8.1.1", - "detect-port": "^1.3.0", - "express": "^4.17.1", - "file-system-cache": "^1.0.5", - "fs-extra": "^9.0.1", - "globby": "^11.0.2", - "ip": "^1.1.5", - "node-fetch": "^2.6.1", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "regenerator-runtime": "^0.13.7", - "serve-favicon": "^2.5.0", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "webpack": "4" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-toolbars": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.18.tgz", + "integrity": "sha512-mwhq962o0WloHAeFjJ6BXO2nzdTo5KE2fqawPpqcB2lwXP6tvaA2tDWwgntjPCHejqWTS+ZTdO4/1xrMhWYt/g==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/node-logger": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-6.3.7.tgz", - "integrity": "sha512-YXHCblruRe6HcNefDOpuXJoaybHnnSryIVP9Z+gDv6OgLAMkyxccTIaQL9dbc/eI4ywgzAz4kD8t1RfVwXNVXw==", - "dev": true, - "requires": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "core-js": "^3.8.2", - "npmlog": "^4.1.2", - "pretty-hrtime": "^1.0.3" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-viewport": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.18.tgz", + "integrity": "sha512-aVVLBsWXfGDX3z1pc93LWWdG5RUoJbGL/JJPMZGwXdwWpP8V3OBl8D8bgPymyg+MgwhSRZZDDGgnJaVGGwZ6bQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18", + "memoizerific": "^1.11.3", + "prop-types": "^15.7.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/router": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.3.7.tgz", - "integrity": "sha512-6tthN8op7H0NoYoE1SkQFJKC42pC4tGaoPn7kEql8XGeUJnxPtVFjrnywlTrRnKuxZKIvbilQBAwDml97XH23Q==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/client-logger": "6.3.7", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "ts-dedent": "^2.0.0" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/addons": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-7.0.18.tgz", + "integrity": "sha512-+j9ItxWoVzarbllaV4WRaJpDM3P2aC5O6F3cPn4YkG/unb6HOs11WLAqFbzZnLYZNAFvWS8PYEAtqs1BxG66YQ==", + "dev": true, + "dependencies": { + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/types": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/api": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/api/-/api-7.0.18.tgz", + "integrity": "sha512-gikVJBR2z7LdepljmbvbsrYgywQm3jNEEEmjG0OwYDeYNjWPuoQSffT+LoyouaaCK90d1osJLl3062OkwlIG8g==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/manager-api": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "@storybook/theming": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.3.7.tgz", - "integrity": "sha512-GXBdw18JJd5jLLcRonAZWvGGdwEXByxF1IFNDSOYCcpHWsMgTk4XoLjceu9MpXET04pVX51LbVPLCvMdggoohg==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@emotion/is-prop-valid": "^0.8.6", - "@emotion/styled": "^10.0.27", - "@storybook/client-logger": "6.3.7", - "core-js": "^3.8.2", - "deep-object-diff": "^1.1.0", - "emotion-theming": "^10.0.27", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/blocks": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.18.tgz", + "integrity": "sha512-HLsuzmUdVIeFXEP5v5vyjnEePRNYjzltwTjCKQhHAlt8/aQZmREiIMOfoMoAa1Rd+On8Ib2DUd2cN10VS18H8A==", + "dev": true, + "dependencies": { + "@storybook/channels": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/docs-tools": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.0.3", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/builder-manager": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.18.tgz", + "integrity": "sha512-yFMm3xuYkyg2hS1uz3CkvyvLzK7qJsDPVEh7lew8GiJK1Xx8cc+FnAOlRTjWNxvhfiT296wAMCTPWv7LeoSgqQ==", + "dependencies": { + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "7.0.18", + "@storybook/manager": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@types/ejs": "^3.1.1", + "@types/find-cache-dir": "^3.2.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.17.0", + "esbuild-plugin-alias": "^0.2.1", + "express": "^4.17.3", + "find-cache-dir": "^3.0.0", + "fs-extra": "^11.1.0", + "process": "^0.11.10", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/builder-webpack5": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.0.18.tgz", + "integrity": "sha512-ciDOHrnChHWjikQwsM+xGz70PGfWurcezCyRPPRY0zimyHWtlug6V1Q9dJAdEAFsxqFSZA/qg7gEcZyqdlTMaA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.10", + "@storybook/addons": "7.0.18", + "@storybook/api": "7.0.18", + "@storybook/channel-postmessage": "7.0.18", + "@storybook/channel-websocket": "7.0.18", + "@storybook/channels": "7.0.18", + "@storybook/client-api": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/components": "7.0.18", + "@storybook/core-common": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/core-webpack": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/manager-api": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/preview": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/router": "7.0.18", + "@storybook/store": "7.0.18", + "@storybook/theming": "7.0.18", + "@types/node": "^16.0.0", + "@types/semver": "^7.3.4", + "babel-loader": "^9.0.0", + "babel-plugin-named-exports-order": "^0.0.2", + "browser-assert": "^1.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.7.1", + "express": "^4.17.3", + "fork-ts-checker-webpack-plugin": "^7.2.8", + "fs-extra": "^11.1.0", + "html-webpack-plugin": "^5.5.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "semver": "^7.3.7", + "style-loader": "^3.3.1", + "terser-webpack-plugin": "^5.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "webpack": "5", + "webpack-dev-middleware": "^5.3.1", + "webpack-hot-middleware": "^2.25.1", + "webpack-virtual-modules": "^0.4.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==", + "dev": true + }, + "node_modules/@storybook/builder-webpack5/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", + "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.2", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.3.0.tgz", + "integrity": "sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "vue-template-compiler": "*", + "webpack": "^5.11.0" + }, + "peerDependenciesMeta": { + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@storybook/builder-webpack5/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/builder-webpack5/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/channel-postmessage": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.18.tgz", + "integrity": "sha512-rpwBH5ANdPnugS6+7xG9qHSoS+aPSEnBxDKsONWFubfMTTXQuFkf/793rBbxGkoINdqh8kSdKOM2rIty6e9cmQ==", + "dependencies": { + "@storybook/channels": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/channel-websocket": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.18.tgz", + "integrity": "sha512-QYsZIfe23NN4i+oIdPKHaYBehk3a/HYk57a+M2oR3Frmv8IOqc/e31uH+xx5NxnjHrTJj7Y80ZJw6EKB682S6w==", + "dev": true, + "dependencies": { + "@storybook/channels": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/global": "^5.0.0", + "telejson": "^7.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/channels": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.18.tgz", + "integrity": "sha512-rkA7ea0M3+dWS+71iHJdiZ5R2QuIdiVg0CgyLJHDagc1qej7pEVNhMWtppeq+X5Pwp9nkz8ZTQ7aCjTf6th0/A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/cli": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.18.tgz", + "integrity": "sha512-9n4J4thiCUsGSXiRc6ZysqYUaCMCrpu0/qgC+5ngfFRuMmZgUV0y5+0fmaOhT2XjsonTTgucizO82i7+ottCVg==", + "dependencies": { + "@babel/core": "^7.20.2", + "@babel/preset-env": "^7.20.2", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "7.0.18", + "@storybook/core-common": "7.0.18", + "@storybook/core-server": "7.0.18", + "@storybook/csf-tools": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/telemetry": "7.0.18", + "@storybook/types": "7.0.18", + "@types/semver": "^7.3.4", + "boxen": "^5.1.2", + "chalk": "^4.1.0", + "commander": "^6.2.1", + "cross-spawn": "^7.0.3", + "detect-indent": "^6.1.0", + "envinfo": "^7.7.3", + "execa": "^5.0.0", + "express": "^4.17.3", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "get-port": "^5.1.1", + "giget": "^1.0.0", + "globby": "^11.0.2", + "jscodeshift": "^0.14.0", + "leven": "^3.1.0", + "ora": "^5.4.1", + "prettier": "^2.8.0", + "prompts": "^2.4.0", + "puppeteer-core": "^2.1.1", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "shelljs": "^0.8.5", + "simple-update-notifier": "^1.0.0", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/cli/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@storybook/cli/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@storybook/cli/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@storybook/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/tempy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", + "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@storybook/client-api": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-7.0.18.tgz", + "integrity": "sha512-EdgE4om6nXZf/sDZcVMGMeKv4BPX+P3EKUfMHCHjlrbbeL0eeY8Ynf+u/wYrIYZPUodS8TEV5XchHVB8F7rLBQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/preview-api": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/client-logger": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.18.tgz", + "integrity": "sha512-uKgFdVedYoRDZBVrE1IBdWNHDFln1IxWEeI+7ZiNSQwREG9swHpU5Fa8DceclM/oLjJRuzG1jFzv+XZY8894+Q==", + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.18.tgz", + "integrity": "sha512-+9XFns29e8FpPLsqA8ZCQ3mNnIIKD3QnqGYkbkCVKi/G1fomvVQsIfsnkrYv5SobTbz29B4aNWxAaeSnO7/OGg==", + "dependencies": { + "@babel/core": "~7.21.0", + "@babel/preset-env": "~7.21.0", + "@babel/types": "~7.21.2", + "@storybook/csf": "^0.1.0", + "@storybook/csf-tools": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/types": "7.0.18", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "jscodeshift": "^0.14.0", + "lodash": "^4.17.21", + "prettier": "^2.8.0", + "recast": "^0.23.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod/node_modules/@babel/core": { + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@storybook/codemod/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@storybook/codemod/node_modules/@babel/preset-env": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz", + "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==", + "dependencies": { + "@babel/compat-data": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-plugin-utils": "^7.21.5", + "@babel/helper-validator-option": "^7.21.0", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7", + "@babel/plugin-proposal-async-generator-functions": "^7.20.7", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.21.0", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.21.0", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.21.5", + "@babel/plugin-transform-async-to-generator": "^7.20.7", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.21.0", + "@babel/plugin-transform-classes": "^7.21.0", + "@babel/plugin-transform-computed-properties": "^7.21.5", + "@babel/plugin-transform-destructuring": "^7.21.3", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.21.5", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.20.11", + "@babel/plugin-transform-modules-commonjs": "^7.21.5", + "@babel/plugin-transform-modules-systemjs": "^7.20.11", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.21.3", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.21.5", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.20.7", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.21.5", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.21.5", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@storybook/codemod/node_modules/@babel/types": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "dependencies": { + "@babel/helper-string-parser": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@storybook/codemod/node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@storybook/codemod/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@storybook/codemod/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@storybook/components": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.18.tgz", + "integrity": "sha512-Jn1CbF9UAKt8BVaZtuhmthpcZ02VMaCFXR0ISfDXCpiMKnylmpP0+WfXcoKLzz6yS+EW8EW5S9+Qq8xgQY8H7A==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "memoizerific": "^1.11.3", + "use-resize-observer": "^9.1.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/core-client": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.18.tgz", + "integrity": "sha512-ueExRZx6fd9LRssgdhDJ0bL4Ir2RrbXzJz/kjIT2KgYY3l7jkhe0dpT3bOgGKjQt0f7XMFU24t/r7aDLGMB+2Q==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/preview-api": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-common": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.18.tgz", + "integrity": "sha512-HZAB1NIK/Yv0x9poyzqYcue2tx39+MAF1mbHgGy+JJZRerO2fRShgo8f8VPH9ChbFCoJ7isL5wNhgGdg9kp2kA==", + "dependencies": { + "@storybook/node-logger": "7.0.18", + "@storybook/types": "7.0.18", + "@types/node": "^16.0.0", + "@types/pretty-hrtime": "^1.0.0", + "chalk": "^4.1.0", + "esbuild": "^0.17.0", + "esbuild-register": "^3.4.0", + "file-system-cache": "^2.0.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "glob": "^8.1.0", + "glob-promise": "^6.0.2", + "handlebars": "^4.7.7", + "lazy-universal-dotenv": "^4.0.0", + "picomatch": "^2.3.0", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-common/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==" + }, + "node_modules/@storybook/core-common/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/core-common/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@storybook/core-common/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/core-common/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@storybook/core-common/node_modules/glob-promise": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", + "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", + "dependencies": { + "@types/glob": "^8.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/ahmadnassri" + }, + "peerDependencies": { + "glob": "^8.0.3" + } + }, + "node_modules/@storybook/core-common/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-common/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-common/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-events": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.18.tgz", + "integrity": "sha512-7gxHBQDezdKOeq/u1LL80Bwjfcwsv7XOS3yWQElcgqp+gLaYB6OwwgtkCB2yV6a6l4nep9IdPWE8G3TxIzn9xw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-server": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.18.tgz", + "integrity": "sha512-zGSGYSoCaSXM28OYKW7zsmpo8VU1icubXLRgdF21fbMhFN1WVS+bPA5+gSkAMf8acq5RNM8uSKskh7E2YDVEqA==", + "dependencies": { + "@aw-web-design/x-default-browser": "1.4.88", + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-manager": "7.0.18", + "@storybook/core-common": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/csf-tools": "7.0.18", + "@storybook/docs-mdx": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/manager": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/telemetry": "7.0.18", + "@storybook/types": "7.0.18", + "@types/detect-port": "^1.3.0", + "@types/node": "^16.0.0", + "@types/node-fetch": "^2.5.7", + "@types/pretty-hrtime": "^1.0.0", + "@types/semver": "^7.3.4", + "better-opn": "^2.1.1", + "boxen": "^5.1.2", + "chalk": "^4.1.0", + "cli-table3": "^0.6.1", + "compression": "^1.7.4", + "detect-port": "^1.3.0", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "globby": "^11.0.2", + "ip": "^2.0.0", + "lodash": "^4.17.21", + "node-fetch": "^2.6.7", + "open": "^8.4.0", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "serve-favicon": "^2.5.0", + "telejson": "^7.0.3", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2", + "watchpack": "^2.2.0", + "ws": "^8.2.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-server/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==" + }, + "node_modules/@storybook/core-server/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/core-server/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/core-server/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-server/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-server/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-server/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true }, - "@storybook/ui": { - "version": "6.3.7", - "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.3.7.tgz", - "integrity": "sha512-PBeRO8qtwAbtHvxUgNtz/ChUR6qnN+R37dMaIs3Y96jbks1fS2K9Mt7W5s1HnUbWbg2KsZMv9D4VYPBasY+Isw==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@storybook/addons": "6.3.7", - "@storybook/api": "6.3.7", - "@storybook/channels": "6.3.7", - "@storybook/client-logger": "6.3.7", - "@storybook/components": "6.3.7", - "@storybook/core-events": "6.3.7", - "@storybook/router": "6.3.7", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.3.7", - "@types/markdown-to-jsx": "^6.11.3", - "copy-to-clipboard": "^3.3.1", - "core-js": "^3.8.2", - "core-js-pure": "^3.8.2", - "downshift": "^6.0.15", - "emotion-theming": "^10.0.27", - "fuse.js": "^3.6.1", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^6.11.4", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "qs": "^6.10.0", - "react-draggable": "^4.4.3", - "react-helmet-async": "^1.0.7", - "react-sizeme": "^3.0.1", - "regenerator-runtime": "^0.13.7", - "resolve-from": "^5.0.0", - "store2": "^2.12.0" - } + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@storybook/core-server/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@storybook/core-webpack": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.0.18.tgz", + "integrity": "sha512-U5e1r8cgZZzd/Lw9StIrACMVINCvucKm8ZfcFpPh0bjEv4+2qjo9tL3dLNh4OwKznvbzSE6pEO6cBjaphjTe1A==", + "dev": true, + "dependencies": { + "@storybook/core-common": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/types": "7.0.18", + "@types/node": "^16.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-webpack/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==", + "dev": true + }, + "node_modules/@storybook/csf": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz", + "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==", + "dependencies": { + "type-fest": "^2.19.0" + } + }, + "node_modules/@storybook/csf-plugin": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.18.tgz", + "integrity": "sha512-Cr/Qr4/H4JIYgbbmDjQIYuqjp6nOaZga73R3KZcuClk27B90sI2ADegMYvORgbFgSkwweNQjgak6hLoOyogAhw==", + "dev": true, + "dependencies": { + "@storybook/csf-tools": "7.0.18", + "unplugin": "^0.10.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf-tools": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.18.tgz", + "integrity": "sha512-0IJ2qdrxleTl67FUzsEvGcy96CY0OKyERE33tAsLNbvWcabdJKpLHP+rJwbsCw4z6IlS+kkmEffeFf5qRPTwkQ==", + "dependencies": { + "@babel/generator": "~7.21.1", + "@babel/parser": "~7.21.2", + "@babel/traverse": "~7.21.2", + "@babel/types": "~7.21.2", + "@storybook/csf": "^0.1.0", + "@storybook/types": "7.0.18", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf-tools/node_modules/@babel/generator": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.9.tgz", + "integrity": "sha512-F3fZga2uv09wFdEjEQIJxXALXfz0+JaOb7SabvVMmjHxeVTuGW8wgE8Vp1Hd7O+zMTYtcfEISGRzPkeiaPPsvg==", + "dependencies": { + "@babel/types": "^7.21.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@storybook/csf-tools/node_modules/@babel/parser": { + "version": "7.21.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.9.tgz", + "integrity": "sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@storybook/csf-tools/node_modules/@babel/traverse": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", + "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", + "dependencies": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.5", + "@babel/types": "^7.21.5", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@storybook/csf-tools/node_modules/@babel/types": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "dependencies": { + "@babel/helper-string-parser": "^7.21.5", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@storybook/docs-mdx": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", + "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==" + }, + "node_modules/@storybook/docs-tools": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.18.tgz", + "integrity": "sha512-H95dW2DquGQ75ZVrFjvznPdCxT0eW6esDnemzLJB61KitcYZrWRavfrZzFtUcpzIa84OgY5pllFYt636v11LHQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.10", + "@storybook/core-common": "7.0.18", + "@storybook/preview-api": "7.0.18", + "@storybook/types": "7.0.18", + "@types/doctrine": "^0.0.3", + "doctrine": "^3.0.0", + "lodash": "^4.17.21" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==" + }, + "node_modules/@storybook/manager": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.18.tgz", + "integrity": "sha512-hasb8XDmkT9lyX2cwb3Xg0ngcNQ1QCNHKurl2YJtXowb1CvawGKokhnVUTso15NCnurolDyw/Wqka1sagfm+Mg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/manager-api": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.18.tgz", + "integrity": "sha512-anQkm09twL96YkKGXHa+LI0+yMaY6Jxs1lRaetHdMlIqN4VHBHhizHaMgtGfH6xCTuO3WdrKTN7cZii5RH7PBQ==", + "dev": true, + "dependencies": { + "@storybook/channels": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/router": "7.0.18", + "@storybook/theming": "7.0.18", + "@storybook/types": "7.0.18", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "semver": "^7.3.7", + "store2": "^2.14.2", + "telejson": "^7.0.3", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/manager-api/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/manager-api/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/manager-api/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/mdx2-csf": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", + "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", + "dev": true + }, + "node_modules/@storybook/node-logger": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.18.tgz", + "integrity": "sha512-cIeKEBvELtoVP/5UeQ01GJWZ7wM69/9Q+R5uOtNQBlwWFcCD6AVFWMRqq7ObMvdJG/okhXSF+sDetb+BF3zvdw==", + "dependencies": { + "@types/npmlog": "^4.1.2", + "chalk": "^4.1.0", + "npmlog": "^5.0.1", + "pretty-hrtime": "^1.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/node-logger/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/node-logger/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/node-logger/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/node-logger/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/postinstall": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.18.tgz", + "integrity": "sha512-ObIwAK2UiYhXN/7UifISQgBoH5jnyxh6T8kvCw83YhC78SDOPNgIGjToJECizJ7iubtqAWtCfCT5TrGEpyLGbg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preset-create-react-app": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/preset-create-react-app/-/preset-create-react-app-7.0.18.tgz", + "integrity": "sha512-h0nHgKRRmA77P6GBtEISEq/FPsddZboTM+GoHiUMhVuc5GmGS27mX7ptgU3nb3c0ovMR/D780LOoavFAtQS3SQ==", + "dev": true, + "dependencies": { + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@storybook/types": "7.0.18", + "@types/babel__core": "^7.1.7", + "babel-plugin-react-docgen": "^4.1.0", + "pnp-webpack-plugin": "^1.7.0", + "semver": "^7.3.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "*", + "react-scripts": ">=5.0.0" + } + }, + "node_modules/@storybook/preset-create-react-app/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-create-react-app/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-create-react-app/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/preset-react-webpack": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.0.18.tgz", + "integrity": "sha512-ISqq+DWzxHrQUHt83+tq7TKQETQcwekUnNYKgFzN8dVgZWqRS+/PqX+7c07Qa3h/QIWgMjPA6SPN4Z12tV4qpA==", + "dev": true, + "dependencies": { + "@babel/preset-flow": "^7.18.6", + "@babel/preset-react": "^7.18.6", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", + "@storybook/core-webpack": "7.0.18", + "@storybook/docs-tools": "7.0.18", + "@storybook/node-logger": "7.0.18", + "@storybook/react": "7.0.18", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@types/node": "^16.0.0", + "@types/semver": "^7.3.4", + "babel-plugin-add-react-displayname": "^0.0.5", + "babel-plugin-react-docgen": "^4.2.1", + "fs-extra": "^11.1.0", + "react-refresh": "^0.11.0", + "semver": "^7.3.7", + "webpack": "5" + }, + "engines": { + "node": ">=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "^7.11.5", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true }, - "@types/node": { - "version": "14.17.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.14.tgz", - "integrity": "sha512-rsAj2u8Xkqfc332iXV12SqIsjVi07H479bOP4q94NAcjzmAvapumEhuVIt53koEf7JFrpjgNKjBga5Pnn/GL8A==", - "dev": true + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==", + "dev": true + }, + "node_modules/@storybook/preset-react-webpack/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/preview": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.18.tgz", + "integrity": "sha512-L53p2eo8G12U6tp7hD3mk5tdWFXLvdEyV9e7a1x9bw1LfH15K/bp8lO6U/W1kkpse7+rqWBqoTjJC1Ktm5Sxog==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preview-api": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.18.tgz", + "integrity": "sha512-xxtC0gPGMn/DbwvS4ZuJaBwfFNsjUCf0yLYHFrNe6fxncbvcLZ550RuyUwYuIRfsiKrlgfa3QmmCa4JM/JesHQ==", + "dependencies": { + "@storybook/channel-postmessage": "7.0.18", + "@storybook/channels": "7.0.18", + "@storybook/client-logger": "7.0.18", + "@storybook/core-events": "7.0.18", + "@storybook/csf": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.0.18", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/react": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.18.tgz", + "integrity": "sha512-lumUbHYeuL3qa4SZR9K2YC4UIt1hwW19GuI/6f2HEV5gR9QHHSJHg9HD9pjcxv4fQaiG81ACZ0Sg6lyUkcJvuQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/core-client": "7.0.18", + "@storybook/docs-tools": "7.0.18", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.0.18", + "@storybook/react-dom-shim": "7.0.18", + "@storybook/types": "7.0.18", + "@types/escodegen": "^0.0.6", + "@types/estree": "^0.0.51", + "@types/node": "^16.0.0", + "acorn": "^7.4.1", + "acorn-jsx": "^5.3.1", + "acorn-walk": "^7.2.0", + "escodegen": "^2.0.0", + "html-tags": "^3.1.0", + "lodash": "^4.17.21", + "prop-types": "^15.7.2", + "react-element-to-jsx-string": "^15.0.0", + "ts-dedent": "^2.0.0", + "type-fest": "^2.19.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin": { + "version": "1.0.6--canary.9.0c3f3b7.0", + "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", + "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "typescript": ">= 4.x", + "webpack": ">= 4" + } + }, + "node_modules/@storybook/react-dom-shim": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.18.tgz", + "integrity": "sha512-O1FRypR8q1katjbznnxI+NtALd2gaWa7KnTwbIDf+ddZltXHMZ8xMiEGEtAMrfXlIuqIr9UvmLRfKZC/ysuA+g==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/react-webpack5": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.0.18.tgz", + "integrity": "sha512-FS25UMhXhbJ203XxW6YOWZCeMLCKBLu+X3W2r9JgVXfFdBEVsx3Aldsy3yJRqi1MGIqC6hLy94v79lJldKs7Ig==", + "dev": true, + "dependencies": { + "@storybook/builder-webpack5": "7.0.18", + "@storybook/preset-react-webpack": "7.0.18", + "@storybook/react": "7.0.18", + "@types/node": "^16.0.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "^7.11.5", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true }, + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-webpack5/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==", + "dev": true + }, + "node_modules/@storybook/react/node_modules/@types/node": { + "version": "16.18.34", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.34.tgz", + "integrity": "sha512-VmVm7gXwhkUimRfBwVI1CHhwp86jDWR04B5FGebMMyxV90SlCmFujwUHrxTD4oO+SOYU86SoxvhgeRQJY7iXFg==", + "dev": true + }, + "node_modules/@storybook/router": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.18.tgz", + "integrity": "sha512-Mue4s/BnKgdYcsiW9yuvW3qL9k3AgYn5HIhnkBExAteyiUGdAca4IJFhArmGgFktgeLc4ecBQ7sgaCljApnbgg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/store": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/store/-/store-7.0.18.tgz", + "integrity": "sha512-rvQOG7R1+r77Y9jwNqQB3EKW6D5kzIGoxqzFHd1oDqeY5+vqPXHC/J5iDrl8TZ4GES7ZMAHpkTySbY+rRQK7Ng==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/preview-api": "7.0.18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/telemetry": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.18.tgz", + "integrity": "sha512-JP5Z7lGU+oKjNmz2cZW5J7EerwyWBBPOU+NvvooZsymIx02ZvJ4ClmFtolJnBM7m4KoAy50JxV5NQWi+q8PicQ==", + "dependencies": { + "@storybook/client-logger": "7.0.18", + "@storybook/core-common": "7.0.18", + "chalk": "^4.1.0", + "detect-package-manager": "^2.0.1", + "fetch-retry": "^5.0.2", + "fs-extra": "^11.1.0", + "isomorphic-unfetch": "^3.1.0", + "nanoid": "^3.3.1", + "read-pkg-up": "^7.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/telemetry/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/telemetry/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/telemetry/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/telemetry/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/theming": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.18.tgz", + "integrity": "sha512-P1gMKa/mKQHIMq0sxBIwTzAcF6v/6hrc62YmkuV62vXu+8zNV2YWbRwywqm3Q6faZEadmb/bL9+z8whaKhCL/g==", + "dev": true, + "dependencies": { + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@storybook/client-logger": "7.0.18", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/types": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.18.tgz", + "integrity": "sha512-qPop2CbvmX42/BX29YT9jIzW2TlMcMjAE+KCpcKLBiD1oT5DJ1fhMzpe6RW9HkMegkBxjWx54iamN4oHM/pwcQ==", + "dependencies": { + "@storybook/channels": "7.0.18", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@svgr/core/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/core/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.0.tgz", + "integrity": "sha512-Dffe68pGwI6WlLRYR2I0piIkyole9cSBH5jGQKCGMRpHW5RHCqAUaqc2Kv0tUyd4dU4DLPKhJIjyKOnjv4tuUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.16.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz", + "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==", + "dev": true, + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.0.0.tgz", + "integrity": "sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^9.0.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "peer": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "peer": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "peer": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "peer": true + }, + "node_modules/@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.0.tgz", + "integrity": "sha512-TBOjqAGf0hmaqRwpii5LLkJLg7c6OMm4nHLmpsUxwk9bBHtoTC6dAHdVWdGv4TBxj2CZOZY8Xfq8WmfoVi7n4Q==", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz", + "integrity": "sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/detect-port": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz", + "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==" + }, + "node_modules/@types/doctrine": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", + "dev": true + }, + "node_modules/@types/ejs": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz", + "integrity": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==" + }, + "node_modules/@types/escodegen": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", + "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", + "dev": true + }, + "node_modules/@types/eslint": { + "version": "8.40.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.0.tgz", + "integrity": "sha512-nbq2mvc/tBrK9zQQuItvjJl++GTN5j06DaPtp3hZCpngmG6Q3xoyEmd0TwZI0gAy/G1X0zhGBbr2imsGFdFV0g==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.35", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz", + "integrity": "sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/find-cache-dir": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", + "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==" + }, + "node_modules/@types/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", + "dependencies": { + "@types/minimatch": "^5.1.2", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", + "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/lodash": { + "version": "4.14.195", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz", + "integrity": "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==", + "dev": true + }, + "node_modules/@types/mdx": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz", + "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + }, + "node_modules/@types/mime-types": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", + "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==" + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + }, + "node_modules/@types/node": { + "version": "20.2.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz", + "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==" + }, + "node_modules/@types/node-fetch": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", + "dependencies": { + "@types/node": "*", + "form-data": "^3.0.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + }, + "node_modules/@types/npmlog": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz", + "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" + }, + "node_modules/@types/pretty-hrtime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", + "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "node_modules/@types/react": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.7.tgz", + "integrity": "sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", + "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@types/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + }, + "node_modules/@types/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz", + "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", + "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.6.tgz", + "integrity": "sha512-FkHXCb+ikSoUP4Y4rOslzTdX5sqYwMxfefKh1GmZ8ce1GOkEHntSp6b5cGadmNfp5e4BMEWOMx+WSKd5/MqlDA==", + "dev": true, + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", + "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==" + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.7.tgz", + "integrity": "sha512-BL+jYxUFIbuYwy+4fF86k5vdT9lT0CNJ6HtwrIvGh0PhH8s0yy5rjaKH2fDCrz5ITHy07WCzVGNvAmjJh4IJFA==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/type-utils": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.59.7.tgz", + "integrity": "sha512-jqM0Cjfvta/sBlY1MxdXYv853/dJUC2wmUWnKoG2srwp0njNGQ6Zu/XLWoRFiLvocQbzBbpHkPFwKgC2UqyovA==", + "dependencies": { + "@typescript-eslint/utils": "5.59.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.7.tgz", + "integrity": "sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/typescript-estree": "5.59.7", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz", + "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==", + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.7.tgz", + "integrity": "sha512-ozuz/GILuYG7osdY5O5yg0QxXUAEoI4Go3Do5xeu+ERH9PorHBPSdvD3Tjp2NN2bNLh1NJQSsQu2TPu/Ly+HaQ==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.59.7", + "@typescript-eslint/utils": "5.59.7", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz", + "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz", + "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==", + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/visitor-keys": "5.59.7", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz", + "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.7", + "@typescript-eslint/types": "5.59.7", + "@typescript-eslint/typescript-estree": "5.59.7", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.59.7", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz", + "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==", + "dependencies": { + "@typescript-eslint/types": "5.59.7", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/@yarnpkg/esbuild-plugin-pnp": { + "version": "3.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", + "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", + "dependencies": { + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "esbuild": ">=0.10.0" + } + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "optional": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "babel-loader": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", - "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", - "dev": true, - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^1.4.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", - "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", - "dev": true, - "requires": { - "@babel/helper-define-polyfill-provider": "^0.1.5", - "core-js-compat": "^3.8.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "core-js": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.4.tgz", - "integrity": "sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==", - "dev": true - }, - "core-js-pure": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.4.tgz", - "integrity": "sha512-bY1K3/1Jy9D8Jd12eoeVahNXHLfHFb4TXWI8SQ4y8bImR9qDPmGITBAfmcffTkgUvbJn87r8dILOTWW5kZzkgA==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "css-loader": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz", - "integrity": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.0", - "semver": "^6.3.0" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "dependencies": { - "@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - } - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - } - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "markdown-to-jsx": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", - "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "dev": true, - "requires": { - "prop-types": "^15.6.2", - "unquote": "^1.1.0" - } - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "dev": true - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/antd": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/antd/-/antd-5.5.1.tgz", + "integrity": "sha512-H9vPVGQ/8fT9Zidl4fzMSVAOCDIe/ZQtiU2hDzrN2tqAbaxOet+1HqfoKv7dfy+e0ttKIFvs6Y2yWw/ign1MwQ==", + "dependencies": { + "@ant-design/colors": "^7.0.0", + "@ant-design/cssinjs": "^1.9.1", + "@ant-design/icons": "^5.1.0", + "@ant-design/react-slick": "~1.0.0", + "@babel/runtime": "^7.18.3", + "@ctrl/tinycolor": "^3.6.0", + "@rc-component/color-picker": "~1.1.1", + "@rc-component/mutate-observer": "^1.0.0", + "@rc-component/tour": "~1.8.0", + "@rc-component/trigger": "^1.13.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "dayjs": "^1.11.1", + "qrcode.react": "^3.1.0", + "rc-cascader": "~3.12.0", + "rc-checkbox": "~3.0.0", + "rc-collapse": "~3.5.2", + "rc-dialog": "~9.1.0", + "rc-drawer": "~6.1.1", + "rc-dropdown": "~4.1.0", + "rc-field-form": "~1.31.0", + "rc-image": "~5.16.0", + "rc-input": "~1.0.4", + "rc-input-number": "~7.4.0", + "rc-mentions": "~2.2.0", + "rc-menu": "~9.8.3", + "rc-motion": "^2.7.3", + "rc-notification": "~5.0.4", + "rc-pagination": "~3.4.2", + "rc-picker": "~3.7.4", + "rc-progress": "~3.4.1", + "rc-rate": "~2.10.0", + "rc-resize-observer": "^1.2.0", + "rc-segmented": "~2.2.0", + "rc-select": "~14.5.0", + "rc-slider": "~10.1.0", + "rc-steps": "~6.0.0", + "rc-switch": "~4.1.0", + "rc-table": "~7.32.1", + "rc-tabs": "~12.6.0", + "rc-textarea": "~1.2.2", + "rc-tooltip": "~6.0.0", + "rc-tree": "~5.7.0", + "rc-tree-select": "~5.9.0", + "rc-upload": "~4.3.0", + "rc-util": "^5.27.0", + "scroll-into-view-if-needed": "^3.0.3", + "throttle-debounce": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ant-design" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-root-dir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==" + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz", + "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/assert": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", + "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", + "dependencies": { + "es6-object-assign": "^1.1.0", + "is-nan": "^1.2.1", + "object-is": "^1.0.1", + "util": "^0.12.0" + } + }, + "node_modules/ast-types": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", + "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "node_modules/async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-jest/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/babel-jest/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-jest/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-jest/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/babel-jest/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/babel-jest/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-add-react-displayname": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", + "integrity": "sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==", + "dev": true + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/babel-plugin-macros/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-named-exports-order": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz", + "integrity": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==", + "dev": true + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz", + "integrity": "sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==", + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.4.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz", + "integrity": "sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0", + "core-js-compat": "^3.30.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz", + "integrity": "sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-react-docgen": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz", + "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", + "dev": true, + "dependencies": { + "ast-types": "^0.14.2", + "lodash": "^4.17.15", + "react-docgen": "^5.0.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", - "dev": true, - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "postcss-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", - "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", - "dev": true, - "requires": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.4" - }, - "dependencies": { - "@types/json-schema": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", - "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", - "dev": true - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bcp-47": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-1.0.8.tgz", + "integrity": "sha512-Y9y1QNBBtYtv7hcmoX0tR+tUNSFZGZ6OL6vKPObq8BbOhkCoyayF6ogfLTgAli/KuAEbsYHYUNq2AQuY6IuLag==", + "dev": true, + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/better-opn": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", + "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "dependencies": { + "open": "^7.0.3" + }, + "engines": { + "node": ">8.0.0" + } + }, + "node_modules/better-opn/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-assert": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", + "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dependencies": { + "pako": "~0.2.0" + } + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", - "dev": true + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/c8": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz", + "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^2.0.0", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-reports": "^3.1.4", + "rimraf": "^3.0.2", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001489", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz", + "integrity": "sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/canvas": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/canvas/-/canvas-2.11.2.tgz", + "integrity": "sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.0", + "nan": "^2.17.0", + "simple-get": "^3.0.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/check-types": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", + "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", + "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.6.tgz", + "integrity": "sha512-ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==", + "dev": true, + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "node_modules/cli-table3": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", + "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/compute-scroll-into-view": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz", + "integrity": "sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" } }, - "@storybook/react-docgen-typescript-plugin": { - "version": "1.0.2-canary.253f8c1.0", - "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.253f8c1.0.tgz", - "integrity": "sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==", + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, - "requires": { - "debug": "^4.1.1", - "endent": "^2.0.1", - "find-cache-dir": "^3.3.1", - "flat-cache": "^3.0.4", - "micromatch": "^4.0.2", - "react-docgen-typescript": "^2.0.0", - "tslib": "^2.0.0" + "dependencies": { + "is-what": "^3.14.1" }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "dependencies": { - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "react-docgen-typescript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.1.0.tgz", - "integrity": "sha512-7kpzLsYzVxff//HUVz1sPWLCdoSNvHD3M8b/iQLdF8fgf7zp26eVysRrAUSxiAT4yQv2zl09zHjJEYSYNxQ8Jw==", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", - "dev": true - } + "toggle-selection": "^1.0.6" } }, - "@storybook/router": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-6.2.9.tgz", - "integrity": "sha512-7Bn1OFoItCl8whXRT8N1qp1Lky7kzXJ3aslWp5E8HcM8rxh4OYXfbaeiyJEJxBTGC5zxgY+tAEXHFjsAviFROg==", - "dev": true, - "requires": { - "@reach/router": "^1.3.4", - "@storybook/client-logger": "6.2.9", - "@types/reach__router": "^1.3.7", - "core-js": "^3.8.2", - "fast-deep-equal": "^3.1.3", - "global": "^4.4.0", - "lodash": "^4.17.20", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "ts-dedent": "^2.0.0" + "node_modules/core-js": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz", + "integrity": "sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==", + "dependencies": { + "browserslist": "^4.21.5" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz", + "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz", + "integrity": "sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } - } + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" } }, - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" + "node_modules/cosmiconfig-typescript-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", + "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", + "engines": { + "node": ">=12", + "npm": ">=6" }, + "peerDependencies": { + "@types/node": "*", + "cosmiconfig": ">=7", + "ts-node": ">=10", + "typescript": ">=3" + } + }, + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dependencies": { - "core-js": { - "version": "3.16.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.16.4.tgz", - "integrity": "sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - } + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "@storybook/source-loader": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/source-loader/-/source-loader-6.2.9.tgz", - "integrity": "sha512-cx499g7BG2oeXvRFx45r0W0p2gKEy/e88WsUFnqqfMKZBJ8K0R/lx5DI0l1hq+TzSrE6uGe0/uPlaLkJNIro7g==", + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "peer": true + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", "dev": true, - "requires": { - "@storybook/addons": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/csf": "0.0.1", - "core-js": "^3.8.2", - "estraverse": "^5.2.0", - "global": "^4.4.0", - "loader-utils": "^2.0.0", - "lodash": "^4.17.20", - "prettier": "~2.2.1", - "regenerator-runtime": "^0.13.7" + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "@storybook/theming": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-6.2.9.tgz", - "integrity": "sha512-183oJW7AD7Fhqg5NT4ct3GJntwteAb9jZnQ6yhf9JSdY+fk8OhxRbPf7ov0au2gYACcGrWDd9K5pYQsvWlP5gA==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@emotion/is-prop-valid": "^0.8.6", - "@emotion/styled": "^10.0.27", - "@storybook/client-logger": "6.2.9", - "core-js": "^3.8.2", - "deep-object-diff": "^1.1.0", - "emotion-theming": "^10.0.27", - "global": "^4.4.0", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz", + "integrity": "sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - } + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "@storybook/ui": { - "version": "6.2.9", - "resolved": "https://registry.npmjs.org/@storybook/ui/-/ui-6.2.9.tgz", - "integrity": "sha512-jq2xmw3reIqik/6ibUSbNKGR+Xvr9wkAEwexiOl+5WQ5BeYJpw4dmDmsFQf+SQuWaSEUUPolbzkakRQM778Kdg==", - "dev": true, - "requires": { - "@emotion/core": "^10.1.1", - "@storybook/addons": "6.2.9", - "@storybook/api": "6.2.9", - "@storybook/channels": "6.2.9", - "@storybook/client-logger": "6.2.9", - "@storybook/components": "6.2.9", - "@storybook/core-events": "6.2.9", - "@storybook/router": "6.2.9", - "@storybook/semver": "^7.3.2", - "@storybook/theming": "6.2.9", - "@types/markdown-to-jsx": "^6.11.3", - "copy-to-clipboard": "^3.3.1", - "core-js": "^3.8.2", - "core-js-pure": "^3.8.2", - "downshift": "^6.0.15", - "emotion-theming": "^10.0.27", - "fuse.js": "^3.6.1", - "global": "^4.4.0", - "lodash": "^4.17.20", - "markdown-to-jsx": "^6.11.4", - "memoizerific": "^1.11.3", - "polished": "^4.0.5", - "qs": "^6.10.0", - "react-draggable": "^4.4.3", - "react-helmet-async": "^1.0.7", - "react-sizeme": "^3.0.1", - "regenerator-runtime": "^0.13.7", - "resolve-from": "^5.0.0", - "store2": "^2.12.0" - }, - "dependencies": { - "@storybook/semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@storybook/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==", - "dev": true, - "requires": { - "core-js": "^3.6.5", - "find-up": "^4.1.0" - } - }, - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - }, - "core-js-pure": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.13.1.tgz", - "integrity": "sha512-wVlh0IAi2t1iOEh16y4u1TRk6ubd4KvLE8dlMi+3QUI6SfKphQUh7tAwihGGSQ8affxEXpVIPpOdf9kjR4v4Pw==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "markdown-to-jsx": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", - "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "dev": true, - "requires": { - "prop-types": "^15.6.2", - "unquote": "^1.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "node_modules/css-loader": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.4.tgz", + "integrity": "sha512-0Y5uHtK5BswfaGJ+jrO+4pPg1msFBc0pwPIE1VqfpmVn6YbDfYfXMj8rfd7nt+4goAhJueO+H/I40VWJfcP1mQ==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.21", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.1", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "dev": true, - "requires": { - "side-channel": "^1.0.4" - } + "clean-css": { + "optional": true }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true + "csso": { + "optional": true }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true + "esbuild": { + "optional": true } } }, - "@surma/rollup-plugin-off-main-thread": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", - "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", - "requires": { - "ejs": "^2.6.1", - "magic-string": "^0.25.0" + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "@svgr/babel-plugin-add-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } }, - "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + "node_modules/css-minimizer-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + "node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } }, - "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, - "@svgr/babel-plugin-svg-dynamic-title": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } }, - "@svgr/babel-plugin-svg-em-dimensions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "@svgr/babel-plugin-transform-react-native-svg": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + "node_modules/css-minimizer-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "@svgr/babel-plugin-transform-svg-component": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } }, - "@svgr/babel-preset": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", - "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", - "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", - "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", - "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", - "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "@svgr/core": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", - "requires": { - "@svgr/plugin-jsx": "^5.5.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0" + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" }, - "dependencies": { - "camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } + "engines": { + "node": ">=8.0.0" } }, - "@svgr/hast-util-to-babel-ast": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", - "requires": { - "@babel/types": "^7.12.6" + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true + }, + "node_modules/cssdb": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.6.0.tgz", + "integrity": "sha512-Nna7rph8V0jC6+JBY4Vk4ndErUmfJfV6NJCaZdurL0omggabiy+QB2HCQtu5c/ACLZ0I7REv7A4QyPIoYzZx0w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } + { + "type": "github", + "url": "https://github.com/sponsors/csstools" } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "@svgr/plugin-jsx": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", - "requires": { - "@babel/core": "^7.12.3", - "@svgr/babel-preset": "^5.5.0", - "@svgr/hast-util-to-babel-ast": "^5.5.0", - "svg-parser": "^2.0.2" + "node_modules/cssnano/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" } }, - "@svgr/plugin-svgo": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", - "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", - "requires": { - "cosmiconfig": "^7.0.0", - "deepmerge": "^4.2.2", - "svgo": "^1.2.2" + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dependencies": { - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "@svgr/webpack": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", - "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", - "requires": { - "@babel/core": "^7.12.3", - "@babel/plugin-transform-react-constant-elements": "^7.12.1", - "@babel/preset-env": "^7.12.1", - "@babel/preset-react": "^7.12.5", - "@svgr/core": "^5.5.0", - "@svgr/plugin-jsx": "^5.5.0", - "@svgr/plugin-svgo": "^5.5.0", - "loader-utils": "^2.0.0" + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "@testing-library/dom": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.0.0.tgz", - "integrity": "sha512-Ym375MTOpfszlagRnTMO+FOfTt6gRrWiDOWmEnWLu9OvwCPOWtK6i5pBHmZ07wUJiQ7wWz0t8+ZBK2wFo2tlew==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^4.2.0", - "aria-query": "^4.2.2", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.6", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/customize-cra": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/customize-cra/-/customize-cra-1.0.0.tgz", + "integrity": "sha512-DbtaLuy59224U+xCiukkxSq8clq++MOtJ1Et7LED1fLszWe88EoblEYFBJ895sB1mC6B4uu3xPT/IjClELhMbA==", "dependencies": { - "@babel/code-frame": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", - "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.14.5" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz", - "integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - } - } - }, - "@babel/runtime": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", - "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@jest/types": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.0.6.tgz", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.3.tgz", - "integrity": "sha512-YlFfTGS+zqCgXuXNV26rOIeETOkXnGQXP/pjjL9P0gO/EP9jTmc7pUBhx+jVEIxpq41RX33GQ7N3DzOSfZoglQ==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "pretty-format": { - "version": "27.0.6", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.0.6.tgz", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", - "dev": true, - "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - } - } - }, - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "lodash.flow": "^3.5.0" } }, - "@testing-library/jest-dom": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.14.1.tgz", - "integrity": "sha512-dfB7HVIgTNCxH22M1+KU6viG5of2ldoA5ly8Ar8xkezKHKXjRvznCdbMbqjYGgO2xjRbwnR+rR8MLUIqF3kKbQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "aria-query": "^4.2.2", - "chalk": "^3.0.0", - "css": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.5.6", - "lodash": "^4.17.15", - "redent": "^3.0.0" + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/data-urls/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dependencies": { - "@babel/runtime": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.8.tgz", - "integrity": "sha512-twj3L8Og5SaCRCErB4x4ajbvBIVV77CGeFglHpeg5WC5FF8TZzBWXtTJ4MqaD9QszLYTtr+IsaAL2rEUevb+eg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "css": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", - "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", - "dev": true, - "requires": { - "inherits": "^2.0.4", - "source-map": "^0.6.1", - "source-map-resolve": "^0.6.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-resolve": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", - "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", - "dev": true, - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" } }, - "@testing-library/react": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.0.0.tgz", - "integrity": "sha512-sh3jhFgEshFyJ/0IxGltRhwZv2kFKfJ3fN1vTZ6hhMXzz9ZbbcTgmDYM4e+zJv+oiVKKEWZPyqPAh4MQBI65gA==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^8.0.0" + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "devOptional": true, + "dependencies": { + "@babel/runtime": "^7.21.0" }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/dayjs": { + "version": "1.11.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", + "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "@babel/runtime": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", - "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true } } }, - "@types/anymatch": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", - "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" }, - "@types/aria-query": { + "node_modules/decompress-response": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz", - "integrity": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==", - "dev": true - }, - "@types/babel__core": { - "version": "7.1.14", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz", - "integrity": "sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", + "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", + "optional": true, + "dependencies": { + "mimic-response": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "@types/babel__generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", - "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", - "requires": { - "@babel/types": "^7.0.0" + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", + "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.0", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@types/babel__template": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", - "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" } }, - "@types/babel__traverse": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz", - "integrity": "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==", - "requires": { - "@babel/types": "^7.3.0" + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/braces": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/braces/-/braces-3.0.1.tgz", - "integrity": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==", - "dev": true + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } }, - "@types/color-convert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz", - "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==", - "dev": true, - "requires": { - "@types/color-name": "*" + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", - "dev": true + "node_modules/default-gateway/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } }, - "@types/eslint": { - "version": "7.2.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.10.tgz", - "integrity": "sha512-kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ==", - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/estree": { - "version": "0.0.47", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz", - "integrity": "sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==" + "node_modules/default-gateway/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } }, - "@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "@types/glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@types/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=", - "dev": true + "node_modules/default-gateway/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", - "requires": { - "@types/node": "*" + "node_modules/default-gateway/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" } }, - "@types/hast": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.1.tgz", - "integrity": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==", - "dev": true, - "requires": { - "@types/unist": "*" + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/html-minifier-terser": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", - "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } }, - "@types/is-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/is-function/-/is-function-1.0.0.tgz", - "integrity": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==", - "dev": true + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "@types/istanbul-lib-coverage": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", - "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==" + "node_modules/defu": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", + "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==" }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "requires": { - "@types/istanbul-lib-coverage": "*" + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/istanbul-reports": { + "node_modules/del/node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", - "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", - "requires": { - "@types/istanbul-lib-report": "*" + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "@types/jest": { - "version": "26.0.24", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz", - "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==", - "dev": true, - "requires": { - "jest-diff": "^26.0.0", - "pretty-format": "^26.0.0" + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" } }, - "@types/json-schema": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", - "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" }, - "@types/markdown-to-jsx": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/@types/markdown-to-jsx/-/markdown-to-jsx-6.11.3.tgz", - "integrity": "sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==", - "dev": true, - "requires": { - "@types/react": "*" + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" } }, - "@types/mdast": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.7.tgz", - "integrity": "sha512-YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg==", - "dev": true, - "requires": { - "@types/unist": "*" + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" } }, - "@types/micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==", - "dev": true, - "requires": { - "@types/braces": "*" + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "@types/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==" - }, - "@types/node": { - "version": "13.7.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.7.tgz", - "integrity": "sha512-Uo4chgKbnPNlxQwoFmYIwctkQVkMMmsAoGGU4JKwLuvBefF0pCq4FybNSnfkfRCpC7ZW7kttcC/TrRtAJsvGtg==" - }, - "@types/node-fetch": { - "version": "2.5.10", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.10.tgz", - "integrity": "sha512-IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==", - "dev": true, - "requires": { - "@types/node": "*", - "form-data": "^3.0.0" - }, - "dependencies": { - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - } + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "engines": { + "node": ">=8" } }, - "@types/normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" - }, - "@types/npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==", - "dev": true - }, - "@types/overlayscrollbars": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/@types/overlayscrollbars/-/overlayscrollbars-1.12.0.tgz", - "integrity": "sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/parse5": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", - "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==", - "dev": true - }, - "@types/prettier": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz", - "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==" - }, - "@types/pretty-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.0.tgz", - "integrity": "sha512-xl+5r2rcrxdLViAYkkiLMYsoUs3qEyrAnHFyEzYysgRxdVp3WbhysxIvJIxZp9FvZ2CYezh0TaHZorivH+voOQ==", - "dev": true + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "optional": true, + "engines": { + "node": ">=8" + } }, - "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } }, - "@types/q": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" }, - "@types/qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==", - "dev": true + "node_modules/detect-package-manager": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", + "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", + "dependencies": { + "execa": "^5.1.1" + }, + "engines": { + "node": ">=12" + } }, - "@types/reach__router": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/@types/reach__router/-/reach__router-1.3.7.tgz", - "integrity": "sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg==", - "dev": true, - "requires": { - "@types/react": "*" + "node_modules/detect-package-manager/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "@types/react": { - "version": "16.9.23", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.23.tgz", - "integrity": "sha512-SsGVT4E7L2wLN3tPYLiF20hmZTPGuzaayVunfgXzUn1x4uHVsKH6QDJQ/TdpHqwsTLd4CwrmQ2vOgxN7gE24gw==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" + "node_modules/detect-package-manager/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" } }, - "@types/react-slick": { - "version": "0.23.4", - "resolved": "https://registry.npmjs.org/@types/react-slick/-/react-slick-0.23.4.tgz", - "integrity": "sha512-vXoIy4GUfB7/YgqubR4H7RALo+pRdMYCeLgWwV3MPwl5pggTlEkFBTF19R7u+LJc85uMqC7RfsbkqPLMQ4ab+A==", - "requires": { - "@types/react": "*" + "node_modules/detect-package-manager/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/react-syntax-highlighter": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.5.tgz", - "integrity": "sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==", - "dev": true, - "requires": { - "@types/react": "*" + "node_modules/detect-package-manager/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" } }, - "@types/resolve": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", - "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", - "requires": { - "@types/node": "*" + "node_modules/detect-package-manager/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "@types/source-list-map": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", - "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + "node_modules/detect-package-manager/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "@types/stack-utils": { + "node_modules/detect-package-manager/node_modules/strip-final-newline": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", - "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" - }, - "@types/tapable": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.7.tgz", - "integrity": "sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==" - }, - "@types/testing-library__jest-dom": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.1.tgz", - "integrity": "sha512-Gk9vaXfbzc5zCXI9eYE9BI5BNHEp4D3FWjgqBE/ePGYElLAP+KvxBcsdkwfIVvezs605oiyd/VrpiHe3Oeg+Aw==", - "dev": true, - "requires": { - "@types/jest": "*" + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" } }, - "@types/uglify-js": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz", - "integrity": "sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==", - "requires": { - "source-map": "^0.6.1" - }, + "node_modules/detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" } }, - "@types/unist": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz", - "integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==", - "dev": true - }, - "@types/webpack": { - "version": "4.41.27", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.27.tgz", - "integrity": "sha512-wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA==", - "requires": { - "@types/anymatch": "*", - "@types/node": "*", - "@types/tapable": "^1", - "@types/uglify-js": "*", - "@types/webpack-sources": "*", - "source-map": "^0.6.0" - }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" } }, - "@types/webpack-env": { - "version": "1.16.0", - "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.0.tgz", - "integrity": "sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==", - "dev": true - }, - "@types/webpack-sources": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", - "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", - "requires": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.7.3" - }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } + "ms": "2.0.0" } }, - "@types/yargs": { - "version": "15.0.12", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz", - "integrity": "sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==", - "requires": { - "@types/yargs-parser": "*" - } + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "@types/yargs-parser": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", - "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz", - "integrity": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==", - "requires": { - "@typescript-eslint/experimental-utils": "4.22.0", - "@typescript-eslint/scope-manager": "4.22.0", - "debug": "^4.1.1", - "functional-red-black-tree": "^1.0.1", - "lodash": "^4.17.15", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz", - "integrity": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==", - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } - }, - "@typescript-eslint/parser": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz", - "integrity": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==", - "requires": { - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "debug": "^4.1.1" - } - }, - "@typescript-eslint/scope-manager": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz", - "integrity": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==", - "requires": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0" - } - }, - "@typescript-eslint/types": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz", - "integrity": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==" - }, - "@typescript-eslint/typescript-estree": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz", - "integrity": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==", - "requires": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0", - "debug": "^4.1.1", - "globby": "^11.0.1", - "is-glob": "^4.0.1", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - } + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" }, - "@typescript-eslint/visitor-keys": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz", - "integrity": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==", - "requires": { - "@typescript-eslint/types": "4.22.0", - "eslint-visitor-keys": "^2.0.0" + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "peer": true, + "engines": { + "node": ">=0.3.1" } }, - "@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "requires": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" }, - "@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" }, - "@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "requires": { - "@webassemblyjs/wast-printer": "1.9.0" + "node_modules/dns-packet": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.0.tgz", + "integrity": "sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" } }, - "@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" - }, - "@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "requires": { - "@webassemblyjs/ast": "1.9.0" + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } + "node_modules/dom-align": { + "version": "1.12.4", + "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.4.tgz", + "integrity": "sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==" }, - "@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "requires": { - "@xtuc/ieee754": "^1.2.0" + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" } }, - "@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "requires": { - "@xtuc/long": "4.2.2" + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] }, - "@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" } }, - "@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "node_modules/dotenv": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", + "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", + "engines": { + "node": ">=12" + } }, - "abab": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", - "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "engines": { + "node": ">=12" + } }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" } }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "node_modules/duplexify/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, - "acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + "node_modules/duplexify/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "add-dom-event-listener": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", - "integrity": "sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==", - "requires": { - "object-assign": "4.x" + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "address": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", - "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true }, - "adjust-sourcemap-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", - "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", - "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - } + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, - "aggregate-error": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", - "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "airbnb-js-shims": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz", - "integrity": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==", - "dev": true, - "requires": { - "array-includes": "^3.0.3", - "array.prototype.flat": "^1.2.1", - "array.prototype.flatmap": "^1.2.1", - "es5-shim": "^4.5.13", - "es6-shim": "^0.35.5", - "function.prototype.name": "^1.1.0", - "globalthis": "^1.0.0", - "object.entries": "^1.1.0", - "object.fromentries": "^2.0.0 || ^1.0.0", - "object.getownpropertydescriptors": "^2.0.3", - "object.values": "^1.1.0", - "promise.allsettled": "^1.0.0", - "promise.prototype.finally": "^3.1.0", - "string.prototype.matchall": "^4.0.0 || ^3.0.1", - "string.prototype.padend": "^3.0.0", - "string.prototype.padstart": "^3.0.0", - "symbol.prototype.description": "^1.0.0" - } - }, - "ajv": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", - "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "node_modules/electron-to-chromium": { + "version": "1.4.411", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.411.tgz", + "integrity": "sha512-5VXLW4Qw89vM2WTICHua/y8v7fKGDRVa2VPOtBB9IpLvW316B+xd8yD1wTmLPY2ot/00P/qt87xdolj4aG/Lzg==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } }, - "alphanum-sort": { + "node_modules/encodeurl": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } }, - "ansi-align": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", - "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", + "node_modules/endent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", + "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", "dev": true, - "requires": { - "string-width": "^3.0.0" - }, "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" } }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" - }, - "ansi-escapes": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.0.tgz", - "integrity": "sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg==", - "requires": { - "type-fest": "^0.8.1" + "node_modules/enhanced-resolve": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", + "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" } }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" } }, - "ansi-to-html": { - "version": "0.6.15", - "resolved": "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.15.tgz", - "integrity": "sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==", + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, - "requires": { - "entities": "^2.0.0" + "optional": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" } }, - "antd": { - "version": "3.26.12", - "resolved": "https://registry.npmjs.org/antd/-/antd-3.26.12.tgz", - "integrity": "sha512-aXiRDDpDx1jH/gKJDE2dgZPT1C7qurOZ1OSt9RklQT2K6CFlveF8HJY7Jz1/xHikXA+kmy6kr/OACJiaxBFRkA==", - "requires": { - "@ant-design/create-react-context": "^0.2.4", - "@ant-design/icons": "~2.1.1", - "@ant-design/icons-react": "~2.0.1", - "@types/react-slick": "^0.23.4", - "array-tree-filter": "^2.1.0", - "babel-runtime": "6.x", - "classnames": "~2.2.6", - "copy-to-clipboard": "^3.2.0", - "css-animation": "^1.5.0", - "dom-closest": "^0.2.0", - "enquire.js": "^2.1.6", - "is-mobile": "^2.1.0", - "lodash": "^4.17.13", - "moment": "^2.24.0", - "omit.js": "^1.0.2", - "prop-types": "^15.7.2", - "raf": "^3.4.1", - "rc-animate": "^2.10.2", - "rc-calendar": "~9.15.7", - "rc-cascader": "~0.17.4", - "rc-checkbox": "~2.1.6", - "rc-collapse": "~1.11.3", - "rc-dialog": "~7.6.0", - "rc-drawer": "~3.1.1", - "rc-dropdown": "~2.4.1", - "rc-editor-mention": "^1.1.13", - "rc-form": "^2.4.10", - "rc-input-number": "~4.5.0", - "rc-mentions": "~0.4.0", - "rc-menu": "~7.5.1", - "rc-notification": "~3.3.1", - "rc-pagination": "~1.20.11", - "rc-progress": "~2.5.0", - "rc-rate": "~2.5.0", - "rc-resize-observer": "^0.1.0", - "rc-select": "~9.2.0", - "rc-slider": "~8.7.1", - "rc-steps": "~3.5.0", - "rc-switch": "~1.9.0", - "rc-table": "~6.10.5", - "rc-tabs": "~9.7.0", - "rc-time-picker": "~3.7.1", - "rc-tooltip": "~3.7.3", - "rc-tree": "~2.1.0", - "rc-tree-select": "~2.9.1", - "rc-trigger": "^2.6.2", - "rc-upload": "~2.9.1", - "rc-util": "^4.16.1", - "react-lazy-load": "^3.0.13", - "react-lifecycles-compat": "^3.0.4", - "react-slick": "~0.25.2", - "resize-observer-polyfill": "^1.5.1", - "shallowequal": "^1.1.0", - "warning": "~4.0.3" - }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dependencies": { - "@ant-design/icons": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-2.1.1.tgz", - "integrity": "sha512-jCH+k2Vjlno4YWl6g535nHR09PwCEmTBKAG6VqF+rhkrSPRLfgpU2maagwbZPLjaHuU5Jd1DFQ2KJpQuI6uG8w==" - } + "is-arrayish": "^0.2.1" } }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" } }, - "app-root-dir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", - "integrity": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=", - "dev": true + "node_modules/es-abstract": { + "version": "1.21.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.0", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + "node_modules/es-module-lexer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, - "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", - "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", - "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - } + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" } }, - "arity-n": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", - "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "arr-flatten": { + "node_modules/es6-object-assign": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true + "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", + "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==" + }, + "node_modules/esbuild": { + "version": "0.17.19", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", + "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.17.19", + "@esbuild/android-arm64": "0.17.19", + "@esbuild/android-x64": "0.17.19", + "@esbuild/darwin-arm64": "0.17.19", + "@esbuild/darwin-x64": "0.17.19", + "@esbuild/freebsd-arm64": "0.17.19", + "@esbuild/freebsd-x64": "0.17.19", + "@esbuild/linux-arm": "0.17.19", + "@esbuild/linux-arm64": "0.17.19", + "@esbuild/linux-ia32": "0.17.19", + "@esbuild/linux-loong64": "0.17.19", + "@esbuild/linux-mips64el": "0.17.19", + "@esbuild/linux-ppc64": "0.17.19", + "@esbuild/linux-riscv64": "0.17.19", + "@esbuild/linux-s390x": "0.17.19", + "@esbuild/linux-x64": "0.17.19", + "@esbuild/netbsd-x64": "0.17.19", + "@esbuild/openbsd-x64": "0.17.19", + "@esbuild/sunos-x64": "0.17.19", + "@esbuild/win32-arm64": "0.17.19", + "@esbuild/win32-ia32": "0.17.19", + "@esbuild/win32-x64": "0.17.19" + } + }, + "node_modules/esbuild-plugin-alias": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", + "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==" }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "node_modules/esbuild-register": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", + "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==", + "dependencies": { + "debug": "^4.3.4" + }, + "peerDependencies": { + "esbuild": ">=0.12 <1" + } }, - "array-includes": { + "node_modules/escalade": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz", - "integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0", - "is-string": "^1.0.5" + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" } }, - "array-tree-filter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz", - "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - }, - "array-uniq": { + "node_modules/escape-html": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } }, - "array.prototype.flat": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", - "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" - }, - "object-inspect": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", - "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - } + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "array.prototype.flatmap": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", - "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "function-bind": "^1.1.1" + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.41.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz", + "integrity": "sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.3", + "@eslint/js": "8.41.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.5.2", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-airbnb": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz", + "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==", + "dev": true, "dependencies": { - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } + "eslint-config-airbnb-base": "^15.0.0", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5" + }, + "engines": { + "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.28.0", + "eslint-plugin-react-hooks": "^4.3.0" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "dev": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" } }, - "array.prototype.map": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.3.tgz", - "integrity": "sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.5" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - } - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - } + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" } }, - "arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" } }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "ms": "^2.1.1" } }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - } + "jest": { + "optional": true } } }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } }, - "ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "node_modules/eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, - "requires": { - "tslib": "^2.0.1" - }, "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true } } }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "requires": { - "lodash": "^4.17.14" + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", - "dev": true - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "async-validator": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-1.11.5.tgz", - "integrity": "sha512-XNtCsMAeAH1pdLMEg1z8/Bb3a8cdCbui9QbJATRFHHHW5kT6+NPI3zSVQUXgikTFITzsg+kYY5NTWhM2Orwt9w==" + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "9.8.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", - "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", - "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "colorette": "^1.2.1", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" + "node_modules/eslint-plugin-storybook": { + "version": "0.6.12", + "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.12.tgz", + "integrity": "sha512-XbIvrq6hNVG6rpdBr+eBw63QhOMLpZneQVSooEDow8aQCWGCk/5vqtap1yxpVydNfSxi3S/3mBBRLQqKUqQRww==", + "dev": true, + "dependencies": { + "@storybook/csf": "^0.0.1", + "@typescript-eslint/utils": "^5.45.0", + "requireindex": "^1.1.0", + "ts-dedent": "^2.2.0" + }, + "engines": { + "node": "12.x || 14.x || >= 16" + }, + "peerDependencies": { + "eslint": ">=6" } }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + } }, - "aws4": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", - "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.0.tgz", + "integrity": "sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } }, - "axe-core": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.2.0.tgz", - "integrity": "sha512-1uIESzroqpaTzt9uX48HO+6gfnKu3RwvWdCcWSrX4csMInJfCo1yvKPNXCwXFRpJqRW25tiASb6No0YH57PXqg==" + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } }, - "axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } }, - "babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "dev": true + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } }, - "babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" - }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" } }, - "babel-extract-comments": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", - "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", - "requires": { - "babylon": "^6.18.0" - } - }, - "babel-jest": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", - "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", - "requires": { - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/babel__core": "^7.1.7", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "slash": "^3.0.0" - }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "babel-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", - "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", - "requires": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "mkdirp": "^0.5.3", - "pify": "^4.0.1", - "schema-utils": "^2.6.5" - }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - } - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "babel-plugin-add-react-displayname": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", - "integrity": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=", - "dev": true - }, - "babel-plugin-apply-mdx-type-prop": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz", - "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "7.10.4", - "@mdx-js/util": "1.6.22" + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "requires": { - "object.assign": "^4.1.0" + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "babel-plugin-emotion": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", - "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/serialize": "^0.11.16", - "babel-plugin-macros": "^2.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^1.0.5", - "find-root": "^1.1.0", - "source-map": "^0.5.7" - } + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, - "babel-plugin-extract-import-names": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz", - "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "7.10.4" + "node_modules/eslint-webpack-plugin/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "babel-plugin-import": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/babel-plugin-import/-/babel-plugin-import-1.13.3.tgz", - "integrity": "sha512-1qCWdljJOrDRH/ybaCZuDgySii4yYrtQ8OJQwrcDqdt0y67N30ng3X3nABg6j7gR7qUJgcMa9OMhc4AGViDwWw==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/runtime": "^7.0.0" + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "babel-plugin-istanbul": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^4.0.0", - "test-exclude": "^6.0.0" + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "babel-plugin-jest-hoist": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", - "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "parse-json": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", - "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - } - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "babel-plugin-named-asset-import": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", - "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==" - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz", - "integrity": "sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==", - "requires": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.2.0", - "semver": "^6.1.1" + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "babel-plugin-polyfill-corejs3": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz", - "integrity": "sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.2.0", - "core-js-compat": "^3.9.1" + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "babel-plugin-polyfill-regenerator": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz", - "integrity": "sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.2.0" + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "babel-plugin-react-docgen": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz", - "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", - "dev": true, - "requires": { - "ast-types": "^0.14.2", - "lodash": "^4.17.15", - "react-docgen": "^5.0.0" + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", - "dev": true - }, - "babel-plugin-syntax-object-rest-spread": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" - }, - "babel-plugin-transform-object-rest-spread": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", - "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", - "requires": { - "babel-plugin-syntax-object-rest-spread": "^6.8.0", - "babel-runtime": "^6.26.0" + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "babel-preset-jest": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", - "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", - "requires": { - "babel-plugin-jest-hoist": "^26.6.2", - "babel-preset-current-node-syntax": "^1.0.0" + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "babel-preset-react-app": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", - "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", - "requires": { - "@babel/core": "7.12.3", - "@babel/plugin-proposal-class-properties": "7.12.1", - "@babel/plugin-proposal-decorators": "7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", - "@babel/plugin-proposal-numeric-separator": "7.12.1", - "@babel/plugin-proposal-optional-chaining": "7.12.1", - "@babel/plugin-transform-flow-strip-types": "7.12.1", - "@babel/plugin-transform-react-display-name": "7.12.1", - "@babel/plugin-transform-runtime": "7.12.1", - "@babel/preset-env": "7.12.1", - "@babel/preset-react": "7.12.1", - "@babel/preset-typescript": "7.12.1", - "@babel/runtime": "7.12.1", - "babel-plugin-macros": "2.8.0", - "babel-plugin-transform-react-remove-prop-types": "0.4.24" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/core": { - "version": "7.12.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", - "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.1", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.1", - "@babel/parser": "^7.12.3", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.1", - "@babel/types": "^7.12.1", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", - "requires": { - "@babel/types": "^7.13.12" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", - "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", - "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", - "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", - "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", - "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/preset-env": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", - "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", - "requires": { - "@babel/compat-data": "^7.12.1", - "@babel/helper-compilation-targets": "^7.12.1", - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-validator-option": "^7.12.1", - "@babel/plugin-proposal-async-generator-functions": "^7.12.1", - "@babel/plugin-proposal-class-properties": "^7.12.1", - "@babel/plugin-proposal-dynamic-import": "^7.12.1", - "@babel/plugin-proposal-export-namespace-from": "^7.12.1", - "@babel/plugin-proposal-json-strings": "^7.12.1", - "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", - "@babel/plugin-proposal-numeric-separator": "^7.12.1", - "@babel/plugin-proposal-object-rest-spread": "^7.12.1", - "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", - "@babel/plugin-proposal-optional-chaining": "^7.12.1", - "@babel/plugin-proposal-private-methods": "^7.12.1", - "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-class-properties": "^7.12.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.12.1", - "@babel/plugin-transform-arrow-functions": "^7.12.1", - "@babel/plugin-transform-async-to-generator": "^7.12.1", - "@babel/plugin-transform-block-scoped-functions": "^7.12.1", - "@babel/plugin-transform-block-scoping": "^7.12.1", - "@babel/plugin-transform-classes": "^7.12.1", - "@babel/plugin-transform-computed-properties": "^7.12.1", - "@babel/plugin-transform-destructuring": "^7.12.1", - "@babel/plugin-transform-dotall-regex": "^7.12.1", - "@babel/plugin-transform-duplicate-keys": "^7.12.1", - "@babel/plugin-transform-exponentiation-operator": "^7.12.1", - "@babel/plugin-transform-for-of": "^7.12.1", - "@babel/plugin-transform-function-name": "^7.12.1", - "@babel/plugin-transform-literals": "^7.12.1", - "@babel/plugin-transform-member-expression-literals": "^7.12.1", - "@babel/plugin-transform-modules-amd": "^7.12.1", - "@babel/plugin-transform-modules-commonjs": "^7.12.1", - "@babel/plugin-transform-modules-systemjs": "^7.12.1", - "@babel/plugin-transform-modules-umd": "^7.12.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", - "@babel/plugin-transform-new-target": "^7.12.1", - "@babel/plugin-transform-object-super": "^7.12.1", - "@babel/plugin-transform-parameters": "^7.12.1", - "@babel/plugin-transform-property-literals": "^7.12.1", - "@babel/plugin-transform-regenerator": "^7.12.1", - "@babel/plugin-transform-reserved-words": "^7.12.1", - "@babel/plugin-transform-shorthand-properties": "^7.12.1", - "@babel/plugin-transform-spread": "^7.12.1", - "@babel/plugin-transform-sticky-regex": "^7.12.1", - "@babel/plugin-transform-template-literals": "^7.12.1", - "@babel/plugin-transform-typeof-symbol": "^7.12.1", - "@babel/plugin-transform-unicode-escapes": "^7.12.1", - "@babel/plugin-transform-unicode-regex": "^7.12.1", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.12.1", - "core-js-compat": "^3.6.2", - "semver": "^5.5.0" - } - }, - "@babel/preset-react": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", - "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-transform-react-display-name": "^7.12.1", - "@babel/plugin-transform-react-jsx": "^7.12.1", - "@babel/plugin-transform-react-jsx-development": "^7.12.1", - "@babel/plugin-transform-react-jsx-self": "^7.12.1", - "@babel/plugin-transform-react-jsx-source": "^7.12.1", - "@babel/plugin-transform-react-pure-annotations": "^7.12.1" - } - }, - "@babel/runtime": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", - "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "node_modules/eslint/node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" } }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - }, - "bail": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", - "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" - }, - "batch-processor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/batch-processor/-/batch-processor-1.0.0.tgz", - "integrity": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=", - "dev": true - }, - "bcp-47": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-1.0.8.tgz", - "integrity": "sha512-Y9y1QNBBtYtv7hcmoX0tR+tUNSFZGZ6OL6vKPObq8BbOhkCoyayF6ogfLTgAli/KuAEbsYHYUNq2AQuY6IuLag==", - "dev": true, - "requires": { - "is-alphabetical": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0" + "node_modules/espree": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", + "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" + "node_modules/espree/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "better-opn": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", - "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", - "dev": true, - "requires": { - "open": "^7.0.3" + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "bfj": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", - "requires": { - "bluebird": "^3.5.5", - "check-types": "^11.1.1", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" } }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "bindings": { + "node_modules/esquery": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" } }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dependencies": { - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" } }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", + "node_modules/estree-to-babel": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", + "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", "dev": true, - "requires": { - "inherits": "~2.0.0" + "dependencies": { + "@babel/traverse": "^7.1.6", + "@babel/types": "^7.2.0", + "c8": "^7.6.0" + }, + "engines": { + "node": ">=8.3.0" } }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" }, - "bn.js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", - "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - } + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" } }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" } }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" } }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" } }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" } }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", - "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - } + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "requires": { - "node-int64": "^0.4.0" + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" } }, - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - }, + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" } }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } }, - "builtin-modules": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", - "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true }, - "c8": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/c8/-/c8-7.7.2.tgz", - "integrity": "sha512-8AqNnUMxB3hsgYCYso2GJjlwnaNPlrEEbYbCQb7N76V1nrOgCKXiTcE3gXU18rIj0FeduPywROrIBMC7XAKApg==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@istanbuljs/schema": "^0.1.2", - "find-up": "^5.0.0", - "foreground-child": "^2.0.0", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-reports": "^3.0.2", - "rimraf": "^3.0.0", - "test-exclude": "^6.0.0", - "v8-to-istanbul": "^7.1.0", - "yargs": "^16.2.0", - "yargs-parser": "^20.2.7" - }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.7", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", - "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", - "dev": true - } - } - }, - "cacache": { - "version": "15.0.6", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz", - "integrity": "sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w==", - "requires": { - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "tar": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", - "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - } - } + "engines": { + "node": ">=8.6.0" } }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", - "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.0" + "node_modules/fast-glob/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "node_modules/fast-json-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", "dev": true }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "requires": { - "callsites": "^2.0.0" - } + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "requires": { - "caller-callsite": "^2.0.0" - } + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } + "bser": "2.1.1" } }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dependencies": { + "pend": "~1.2.0" + } }, - "camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true + "node_modules/fetch-retry": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==" }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - }, "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - } + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "caniuse-lite": { - "version": "1.0.30001219", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001219.tgz", - "integrity": "sha512-c0yixVG4v9KBc/tQ2rlbB3A/bgBFRvl8h8M4IeUbqCca4gsiCfvtaheUssbnux/Mb66Vjz7x8yYjDgYcNQOhyQ==" - }, - "capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", - "requires": { - "rsvp": "^4.8.4" + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "case-sensitive-paths-webpack-plugin": { + "node_modules/file-system-cache": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", - "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "ccount": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", - "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", - "dev": true + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", + "dependencies": { + "fs-extra": "11.1.1", + "ramda": "0.29.0" + } }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "node_modules/file-system-cache/node_modules/ramda": { + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ramda" } }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } }, - "character-entities": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", - "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", - "dev": true + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "character-entities-legacy": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", - "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", - "dev": true + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } }, - "character-reference-invalid": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", - "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", - "dev": true + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } }, - "check-types": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", - "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } }, - "chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" } }, - "chownr": { + "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "cjs-module-lexer": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", - "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + "node_modules/find-cache-dir/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", - "requires": { - "source-map": "~0.6.0" + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "cli-spinners": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz", - "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", - "dev": true + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" }, - "cli-table": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.6.tgz", - "integrity": "sha512-ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==", - "dev": true, - "requires": { - "colors": "1.0.3" + "node_modules/flow-parser": { + "version": "0.207.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.207.0.tgz", + "integrity": "sha512-s90OlXqzWj1xc4yUtqD1Gr8pGVx0/5rk9gsqPrOYF1kBAPMH4opkmzdWgQ8aNe3Pckqtwr8DlYGbfE2GnW+zsg==", + "engines": { + "node": ">=0.4.0" } }, - "cli-table3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz", - "integrity": "sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==", - "dev": true, - "requires": { - "colors": "^1.1.2", - "object-assign": "^4.1.0", - "string-width": "^4.2.0" + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" }, - "dependencies": { - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, + "peerDependenciesMeta": { + "debug": { "optional": true } } }, - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - } + "is-callable": "^1.1.3" } }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "clipboard": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", - "integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==", + "node_modules/foreground-child": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", "dev": true, - "optional": true, - "requires": { - "good-listener": "^1.2.2", - "select": "^1.1.2", - "tiny-emitter": "^2.0.0" + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8.0.0" } }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } + "vue-template-compiler": { + "optional": true } } }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", - "dev": true - }, - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collapse-white-space": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", - "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" } }, - "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", - "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "comma-separated-tokens": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", - "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", - "dev": true - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "component-classes": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/component-classes/-/component-classes-1.2.6.tgz", - "integrity": "sha1-xkI5TDYYpNiwuJGe/Mu9kw5c1pE=", - "requires": { - "component-indexof": "0.0.3" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" } }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "component-indexof": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-indexof/-/component-indexof-0.0.3.tgz", - "integrity": "sha1-EdCRMSI5648yyPJa6csAL/6NPCQ=" + "node_modules/fork-ts-checker-webpack-plugin/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } }, - "compose-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", - "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", - "requires": { - "arity-n": "^1.0.4" + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "requires": { - "mime-db": ">= 1.43.0 < 2" + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" } }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "compute-scroll-into-view": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz", - "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==", - "dev": true + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" } }, - "confusing-browser-globals": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", - "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" }, - "console-control-strings": { + "node_modules/fs-readdir-recursive": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", "dev": true }, - "constants-browserify": { + "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "requires": { - "safe-buffer": "5.1.2" + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "requires": { - "safe-buffer": "~5.1.1" + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "node_modules/fuzzaldrin": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fuzzaldrin/-/fuzzaldrin-2.1.0.tgz", + "integrity": "sha512-zgllBYwfHR5P3CncJiGbGVPpa3iFYW1yuPaIv8DiTVRrcg5/6uETNL5zvIoKflG1aifXVUZTlIroDehw4WygGA==", + "dev": true }, - "copy-to-clipboard": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", - "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", - "requires": { - "toggle-selection": "^1.0.6" + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" } }, - "core-js": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz", - "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - }, - "core-js-compat": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.11.1.tgz", - "integrity": "sha512-aZ0e4tmlG/aOBHj92/TuOuZwp6jFvn1WNabU5VOVixzhu5t5Ao+JZkQOPlgNXu6ynwLrwJxklT4Gw1G1VGEh+g==", - "requires": { - "browserslist": "^4.16.5", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" } }, - "core-js-pure": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.4.tgz", - "integrity": "sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cp-file": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz", - "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "nested-error-stacks": "^2.0.0", - "p-event": "^4.1.0" - }, - "dependencies": { - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "node_modules/get-npm-tarball-url": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz", + "integrity": "sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==", + "engines": { + "node": ">=12.17" } }, - "cpy": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/cpy/-/cpy-8.1.2.tgz", - "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==", - "dev": true, - "requires": { - "arrify": "^2.0.1", - "cp-file": "^7.0.0", - "globby": "^9.2.0", - "has-glob": "^1.0.0", - "junk": "^3.1.0", - "nested-error-stacks": "^2.1.0", - "p-all": "^2.1.0", - "p-filter": "^2.1.0", - "p-map": "^3.0.0" - }, - "dependencies": { - "@nodelib/fs.stat": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", - "dev": true - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "dir-glob": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", - "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", - "dev": true, - "requires": { - "path-type": "^3.0.0" - } - }, - "fast-glob": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", - "dev": true, - "requires": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "globby": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", - "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "array-union": "^1.0.2", - "dir-glob": "^2.2.2", - "fast-glob": "^2.2.6", - "glob": "^7.1.3", - "ignore": "^4.0.3", - "pify": "^4.0.1", - "slash": "^2.0.0" - } - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" } }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "engines": { + "node": ">=8" }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "create-react-class": { - "version": "15.6.3", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz", - "integrity": "sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==", - "requires": { - "fbjs": "^0.8.9", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "create-react-context": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz", - "integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==", - "dev": true, - "requires": { - "gud": "^1.0.0", - "warning": "^4.0.3" + "node_modules/giget": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", + "integrity": "sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==", + "dependencies": { + "colorette": "^2.0.19", + "defu": "^6.1.2", + "https-proxy-agent": "^5.0.1", + "mri": "^1.2.0", + "node-fetch-native": "^1.0.2", + "pathe": "^1.1.0", + "tar": "^6.1.13" + }, + "bin": { + "giget": "dist/cli.mjs" } }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + "node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", + "dev": true }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, - "css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", - "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "css-animation": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/css-animation/-/css-animation-1.6.1.tgz", - "integrity": "sha512-/48+/BaEaHRY6kNQ2OIPzKf9A6g8WjZYjhiNDNuIVbsm5tXCGIAsHDjB4Xu1C4vXJtUWZo26O68OQkDpNBaPog==", - "requires": { - "babel-runtime": "6.x", - "component-classes": "^1.2.5" + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" } }, - "css-blank-pseudo": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", - "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", - "requires": { - "postcss": "^7.0.5" + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" - }, - "css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", - "requires": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" - } - }, - "css-has-pseudo": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", - "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^5.0.0-rc.4" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" } }, - "css-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", - "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", - "requires": { - "camelcase": "^6.0.0", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^2.0.0", - "postcss": "^7.0.32", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.3", - "postcss-modules-scope": "^2.2.0", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^2.7.1", - "semver": "^7.3.2" + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dependencies": { - "camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" - } + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "css-prefers-color-scheme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", - "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", - "requires": { - "postcss": "^7.0.5" + "node_modules/globby/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + }, + "bin": { + "gunzip-maybe": "bin.js" } }, - "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" - }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=", - "dev": true + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "cssdb": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", - "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } }, - "cssnano": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", - "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", - "requires": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.8", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "cssnano-preset-default": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", - "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", - "requires": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.3", - "postcss-unique-selectors": "^4.0.1" - } - }, - "cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" }, - "cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } }, - "cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", - "requires": { - "postcss": "^7.0.0" + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "requires": { - "css-tree": "^1.1.2" - }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", "dependencies": { - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" - }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "requires": { - "cssom": "~0.3.6" + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "csstype": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.9.tgz", - "integrity": "sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q==" - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "^1.0.1" + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "customize-cra": { + "node_modules/has-tostringtag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/customize-cra/-/customize-cra-1.0.0.tgz", - "integrity": "sha512-DbtaLuy59224U+xCiukkxSq8clq++MOtJ1Et7LED1fLszWe88EoblEYFBJ895sB1mC6B4uu3xPT/IjClELhMbA==", - "dev": true, - "requires": { - "lodash.flow": "^3.5.0" + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" } }, - "damerau-levenshtein": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", - "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" } }, - "data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "requires": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" } }, - "date-fns": { - "version": "2.22.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.22.1.tgz", - "integrity": "sha512-yUFPQjrxEmIsMqlHhAhmxkuH769baF21Kk+nZwZGyrMoyLA+LugaQtC0+Tqf9CBUUULWwUJt6Q5ySI3LJDDCGg==", - "dev": true + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "requires": { - "ms": "^2.1.1" + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" } }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } }, - "decimal.js": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", - "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "deep-equal": { + "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } }, - "deep-object-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz", - "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==", - "dev": true + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" }, - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" } }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, - "requires": { - "clone": "^1.0.2" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" + "node_modules/html-webpack-plugin": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.1.tgz", + "integrity": "sha512-cTUzZ1+NqjGEKjmVgZKLMdiFg3m9MdRXkZW2OEe69WYVi5ONLMmlnSZdXzGGMOq0C8jGDrL6EWyEDDUioHO/pA==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" } }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" } }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dependencies": { - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "requires": { - "array-uniq": "^1.0.1" - } - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true } } }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } }, - "delegate": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", - "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==", + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", "dev": true, - "optional": true + "engines": { + "node": ">=14.18.0" + } }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" }, - "detab": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz", - "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==", - "dev": true, - "requires": { - "repeat-string": "^1.5.4" + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" } }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "detect-node": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz", - "integrity": "sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==" + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } }, - "detect-port": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", - "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==", + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" + "optional": true, + "bin": { + "image-size": "bin/image-size.js" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + "node_modules/immutable": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", + "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "devOptional": true }, - "diff-sequences": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", - "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "requires": { - "path-type": "^4.0.0" + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" } }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" - }, - "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", - "requires": { - "buffer-indexof": "^1.0.0" + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "requires": { - "esutils": "^2.0.2" + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "dom-accessibility-api": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz", - "integrity": "sha512-DplGLZd8L1lN64jlT27N9TVSESFR5STaEJvX+thCby7fuCHonfPpAlodYc3vuUYbDuDec5w8AMP7oCM5TWFsqw==", - "dev": true - }, - "dom-align": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.10.4.tgz", - "integrity": "sha512-wytDzaru67AmqFOY4B9GUb/hrwWagezoYYK97D/vpK+ezg+cnuZO0Q2gltUPa7KfNmIqfRIYVCF8UhRDEHAmgQ==" + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "dom-closest": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-closest/-/dom-closest-0.2.0.tgz", - "integrity": "sha1-69n5HRvyLo1vR3h2u80+yQIWwM8=", - "requires": { - "dom-matches": ">=1.0.1" + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "requires": { - "utila": "~0.4" + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "dom-matches": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-matches/-/dom-matches-2.0.0.tgz", - "integrity": "sha1-0nKLQWqHUzmA6wibhI0lPPI6dYw=" + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } }, - "dom-scroll-into-view": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/dom-scroll-into-view/-/dom-scroll-into-view-1.2.1.tgz", - "integrity": "sha1-6PNnMt0ImwIBqI14Fdw/iObWbH4=" + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } }, - "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "requires": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dependencies": { - "domelementtype": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" - } + "once": "^1.3.0", + "wrappy": "1" } }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==", - "dev": true - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, - "domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "requires": { - "webidl-conversions": "^5.0.0" + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "requires": { - "domelementtype": "1" + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" } }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "requires": { - "is-obj": "^2.0.0" + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" } }, - "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" }, - "dotenv-defaults": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz", - "integrity": "sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==", - "dev": true, - "requires": { - "dotenv": "^6.2.0" - }, - "dependencies": { - "dotenv": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz", - "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==", - "dev": true - } + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "engines": { + "node": ">= 10" } }, - "dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "dotenv-webpack": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz", - "integrity": "sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==", + "node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", "dev": true, - "requires": { - "dotenv-defaults": "^1.0.2" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "downshift": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/downshift/-/downshift-6.1.3.tgz", - "integrity": "sha512-RA1MuaNcTbt0j+sVLhSs8R2oZbBXYAtdQP/V+uHhT3DoDteZzJPjlC+LQVm9T07Wpvo84QXaZtUCePLDTDwGXg==", + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", "dev": true, - "requires": { - "@babel/runtime": "^7.13.10", - "compute-scroll-into-view": "^1.0.17", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "draft-js": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/draft-js/-/draft-js-0.10.5.tgz", - "integrity": "sha512-LE6jSCV9nkPhfVX2ggcRLA4FKs6zWq9ceuO/88BpXdNCS7mjRTgs0NsV6piUCJX9YxMsB9An33wnkMmU2sD2Zg==", - "requires": { - "fbjs": "^0.8.15", - "immutable": "~3.7.4", - "object-assign": "^4.1.0" + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "ejs": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", - "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" - }, - "electron-to-chromium": { - "version": "1.3.725", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz", - "integrity": "sha512-2BbeAESz7kc6KBzs7WVrMc1BY5waUphk4D4DX5dSQXJhsc3tP5ZFaiyuL0AB7vUKzDYpIeYwTYlEfxyjsGUrhw==" - }, - "element-resize-detector": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/element-resize-detector/-/element-resize-detector-1.2.2.tgz", - "integrity": "sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A==", - "dev": true, - "requires": { - "batch-processor": "1.0.0" - } - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "emittery": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", - "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "node_modules/is-core-module": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "emotion-theming": { - "version": "10.0.27", - "resolved": "https://registry.npmjs.org/emotion-theming/-/emotion-theming-10.0.27.tgz", - "integrity": "sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==", + "node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", "dev": true, - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/weak-memoize": "0.2.5", - "hoist-non-react-statics": "^3.3.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "requires": { - "iconv-lite": "~0.4.13" - } + "node_modules/is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==" }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "endent": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/endent/-/endent-2.0.1.tgz", - "integrity": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==", - "dev": true, - "requires": { - "dedent": "^0.7.0", - "fast-json-parse": "^1.0.3", - "objectorarray": "^1.0.4" + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" } }, - "enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "enquire.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/enquire.js/-/enquire.js-2.1.6.tgz", - "integrity": "sha1-PoeAybi4NQhMP2DhZtvDwqPImBQ=" + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "requires": { - "ansi-colors": "^4.1.1" - }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dependencies": { - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" - } + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "requires": { - "prr": "~1.0.1" + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" + "node_modules/is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "engines": { + "node": ">=0.10.0" } }, - "error-stack-parser": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", - "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", - "requires": { - "stackframe": "^1.1.1" + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "engines": { + "node": ">=8" } }, - "es-abstract": { - "version": "1.17.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz", - "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==", - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.1.5", - "is-regex": "^1.0.5", - "object-inspect": "^1.7.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.0", - "string.prototype.trimleft": "^2.1.1", - "string.prototype.trimright": "^2.1.1" + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es-array-method-boxes-properly": { + "node_modules/is-module": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" }, - "es-get-iterator": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", - "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.0", - "has-symbols": "^1.0.1", - "is-arguments": "^1.1.0", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.5", - "isarray": "^2.0.5" - }, + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - } + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" } }, - "es5-shim": { - "version": "4.5.15", - "resolved": "https://registry.npmjs.org/es5-shim/-/es5-shim-4.5.15.tgz", - "integrity": "sha512-FYpuxEjMeDvU4rulKqFdukQyZSTpzhg4ScQHrAosrlVpR6GFyaw14f74yn2+4BugniIS0Frpg7TvwZocU4ZMTw==", - "dev": true - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-shim": { - "version": "0.35.6", - "resolved": "https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.6.tgz", - "integrity": "sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==", - "dev": true - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } }, - "escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "~1.1.2" - } - } + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "engines": { + "node": ">=6" } }, - "eslint": { - "version": "7.31.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.31.0.tgz", - "integrity": "sha512-vafgJpSh2ia8tnTkNUkwxGmnumgckLh5aAbLa1xRmIn9+owi8qBNGKL+B881kNKNTy7FFqTEkpNkUvmw0n6PkA==", - "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.3", - "@humanwhocodes/config-array": "^0.5.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.1.2", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.9", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz", - "integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==" - }, - "@babel/highlight": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", - "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.5", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - } - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - }, - "globals": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.10.0.tgz", - "integrity": "sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - } + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" } }, - "eslint-config-airbnb": { - "version": "18.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz", - "integrity": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==", - "dev": true, - "requires": { - "eslint-config-airbnb-base": "^14.2.1", - "object.assign": "^4.1.2", - "object.entries": "^1.1.2" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", - "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "eslint-config-airbnb-base": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", - "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "requires": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.2" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", - "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } + "engines": { + "node": ">=0.10.0" } }, - "eslint-config-prettier": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", - "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", - "dev": true - }, - "eslint-config-react-app": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", - "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", - "requires": { - "confusing-browser-globals": "^1.0.10" - } + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, - "eslint-import-resolver-node": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", - "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", - "requires": { - "debug": "^2.6.9", - "resolve": "^1.13.1" - }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "eslint-module-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz", - "integrity": "sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==", - "requires": { - "debug": "^3.2.7", - "pkg-dir": "^2.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "requires": { - "find-up": "^2.1.0" - } - } + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-plugin-flowtype": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.7.2.tgz", - "integrity": "sha512-7Oq/N0+3nijBnYWQYzz/Mp/7ZCpwxYvClRyW/PLAmimY9uLCBvoXsNsERcJdkKceyOjgRbFhhxs058KTrne9Mg==", - "requires": { - "lodash": "^4.17.15", - "string-natural-compare": "^3.0.1" + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" } }, - "eslint-plugin-import": { - "version": "2.23.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz", - "integrity": "sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==", - "requires": { - "array-includes": "^3.1.3", - "array.prototype.flat": "^1.2.4", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.4", - "eslint-module-utils": "^2.6.1", - "find-up": "^2.0.0", - "has": "^1.0.3", - "is-core-module": "^2.4.0", - "minimatch": "^3.0.4", - "object.values": "^1.1.3", - "pkg-up": "^2.0.0", - "read-pkg-up": "^3.0.0", - "resolve": "^1.20.0", - "tsconfig-paths": "^3.9.0" - }, - "dependencies": { - "array-includes": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", - "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.5" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" - } - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "requires": { - "locate-path": "^2.0.0" - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-core-module": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", - "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", - "requires": { - "has": "^1.0.3" - } - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - }, - "dependencies": { - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - } - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "object-inspect": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", - "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.values": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz", - "integrity": "sha512-TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.2" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "requires": { - "pify": "^3.0.0" - } - }, - "pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", - "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", - "requires": { - "find-up": "^2.1.0" - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz", - "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=", - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" } }, - "eslint-plugin-jest": { - "version": "24.3.6", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.6.tgz", - "integrity": "sha512-WOVH4TIaBLIeCX576rLcOgjNXqP+jNlCiEmRgFTfQtJ52DpwnIQKAVGlGPAN7CZ33bW6eNfHD6s8ZbEUTQubJg==", - "requires": { - "@typescript-eslint/experimental-utils": "^4.0.1" + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-plugin-jsx-a11y": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", - "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", - "requires": { - "@babel/runtime": "^7.11.2", - "aria-query": "^4.2.2", - "array-includes": "^3.1.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.0.2", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.6", - "emoji-regex": "^9.0.0", - "has": "^1.0.3", - "jsx-ast-utils": "^3.1.0", - "language-tags": "^1.0.5" - }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - } + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-plugin-prettier": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz", - "integrity": "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==", + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "eslint-plugin-react": { - "version": "7.22.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz", - "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==", - "requires": { - "array-includes": "^3.1.1", - "array.prototype.flatmap": "^1.2.3", - "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "object.entries": "^1.1.2", - "object.fromentries": "^2.0.2", - "object.values": "^1.1.1", - "prop-types": "^15.7.2", - "resolve": "^1.18.1", - "string.prototype.matchall": "^4.0.2" + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-core-module": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", - "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", - "requires": { - "has": "^1.0.3" - } - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", - "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - } - }, - "resolve": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", - "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", - "requires": { - "is-core-module": "^2.1.0", - "path-parse": "^1.0.6" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-plugin-react-hooks": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.5.1.tgz", - "integrity": "sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g==", - "dev": true + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "eslint-plugin-testing-library": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.2.tgz", - "integrity": "sha512-WAmOCt7EbF1XM8XfbCKAEzAPnShkNSwcIsAD2jHdsMUT9mZJPjLCG7pMzbcC8kK366NOuGip8HKLDC+Xk4yIdA==", - "requires": { - "@typescript-eslint/experimental-utils": "^3.10.1" - }, - "dependencies": { - "@typescript-eslint/experimental-utils": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", - "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/types": "3.10.1", - "@typescript-eslint/typescript-estree": "3.10.1", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } - }, - "@typescript-eslint/types": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", - "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" - }, - "@typescript-eslint/typescript-estree": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", - "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", - "requires": { - "@typescript-eslint/types": "3.10.1", - "@typescript-eslint/visitor-keys": "3.10.1", - "debug": "^4.1.1", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", - "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "requires": { - "eslint-visitor-keys": "^1.1.0" - }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "eslint-visitor-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", - "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" - }, - "eslint-webpack-plugin": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.4.tgz", - "integrity": "sha512-7rYh0m76KyKSDE+B+2PUQrlNS4HJ51t3WKpkJg6vo2jFMbEPTG99cBV0Dm7LXSHucN4WGCG65wQcRiTFrj7iWw==", - "requires": { - "@types/eslint": "^7.2.6", - "arrify": "^2.0.1", - "jest-worker": "^26.6.2", - "micromatch": "^4.0.2", - "normalize-path": "^3.0.0", - "schema-utils": "^3.0.0" - }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "espree": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", - "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" - } + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" } }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "requires": { - "estraverse": "^5.2.0" - }, + "node_modules/isomorphic-unfetch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", + "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" - } + "node-fetch": "^2.6.1", + "unfetch": "^4.2.0" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "engines": { + "node": ">=8" + } }, - "estree-to-babel": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", - "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.6", - "@babel/types": "^7.2.0", - "c8": "^7.6.0" + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" } }, - "estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "eventlistener": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/eventlistener/-/eventlistener-0.0.1.tgz", - "integrity": "sha1-7Suqu4UiJ68rz4iRUscsY8pTLrg=" + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "eventsource": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", - "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", - "requires": { - "original": "^1.0.0" + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" } }, - "exec-sh": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", - "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true } } }, - "expect": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", - "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", - "requires": { - "@jest/types": "^26.6.2", - "ansi-styles": "^4.0.0", - "jest-get-type": "^26.3.0", - "jest-matcher-utils": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-regex-util": "^26.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - } + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "requires": { - "type": "^2.0.0" - }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dependencies": { - "type": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", - "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" - } + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } + "node_modules/jest-changed-files/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "node_modules/jest-changed-files/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" } }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + "node_modules/jest-changed-files/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } }, - "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true + "node_modules/jest-changed-files/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "fast-glob": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", - "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "node_modules/jest-changed-files/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" } }, - "fast-json-parse": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", - "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", - "dev": true + "node_modules/jest-changed-files/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "fastq": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", - "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", - "requires": { - "reusify": "^1.0.4" + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" } }, - "fault": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz", - "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==", - "dev": true, - "requires": { - "format": "^0.2.0" + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "requires": { - "websocket-driver": ">=0.5.1" + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", - "requires": { - "bser": "2.1.1" + "node_modules/jest-circus/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", - "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" - } + "node_modules/jest-circus/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" + "node_modules/jest-circus/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "requires": { - "flat-cache": "^3.0.4" + "node_modules/jest-circus/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "file-loader": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", - "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, + "node_modules/jest-circus/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "file-system-cache": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-1.0.5.tgz", - "integrity": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=", - "dev": true, - "requires": { - "bluebird": "^3.3.5", - "fs-extra": "^0.30.0", - "ramda": "^0.21.0" - }, - "dependencies": { - "fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "ramda": { - "version": "0.21.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.21.0.tgz", - "integrity": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=", - "dev": true - } + "node_modules/jest-circus/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true + "node_modules/jest-circus/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "filesize": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", - "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + "node_modules/jest-circus/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" + "node_modules/jest-circus/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true } } }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", - "dev": true + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "node_modules/jest-cli/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "flatted": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.1.tgz", - "integrity": "sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg==" + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "flatten": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", - "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + "node_modules/jest-cli/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" + "node_modules/jest-cli/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true } } }, - "follow-redirects": { - "version": "1.14.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.0.tgz", - "integrity": "sha512-0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg==" - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "foreground-child": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", - "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^3.0.2" - }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "@types/yargs-parser": "*" } }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "fork-ts-checker-webpack-plugin": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", - "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "chalk": "^2.4.1", - "micromatch": "^3.1.10", - "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "node_modules/jest-config/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "format": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz", - "integrity": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=", - "dev": true + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "requires": { - "map-cache": "^0.2.2" + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "node_modules/jest-config/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" + "node_modules/jest-config/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "fs-extra": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", - "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^1.0.0" + "node_modules/jest-config/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "requires": { - "minipass": "^3.0.0" + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", - "dev": true + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, - "function.prototype.name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.4.tgz", - "integrity": "sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ==", + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "functions-have-names": "^1.2.2" - }, "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "functions-have-names": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz", - "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==", - "dev": true + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "fuse.js": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-3.6.1.tgz", - "integrity": "sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==", - "dev": true + "node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "fuzzaldrin": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fuzzaldrin/-/fuzzaldrin-2.1.0.tgz", - "integrity": "sha1-kCBMPi/appQbso0WZF1BgGOpDps=", - "dev": true + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "dev": true, - "requires": { - "globule": "^1.0.0" + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "gensync": { - "version": "1.0.0-beta.1", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", - "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + "node_modules/jest-each/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "get-intrinsic": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz", - "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", - "dev": true + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "requires": { - "pump": "^3.0.0" + "node_modules/jest-environment-jsdom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + "node_modules/jest-environment-jsdom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" + "node_modules/jest-environment-jsdom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "github-slugger": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.3.0.tgz", - "integrity": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==", - "dev": true, - "requires": { - "emoji-regex": ">=6.0.0 <=6.1.1" + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "emoji-regex": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz", - "integrity": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=", - "dev": true - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - }, - "dependencies": { - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "^2.0.0" - } - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - } + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "requires": { - "is-glob": "^4.0.1" + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" } }, - "glob-promise": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-3.4.0.tgz", - "integrity": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==", - "dev": true, - "requires": { - "@types/glob": "*" + "node_modules/jest-environment-node/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "glob-to-regexp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", - "dev": true - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "dev": true, - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" + "node_modules/jest-environment-node/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "requires": { - "global-prefix": "^3.0.0" + "node_modules/jest-environment-node/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "node_modules/jest-environment-node/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "globalthis": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz", - "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "requires": { - "define-properties": "^1.1.3" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "globby": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", - "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "globule": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.2.tgz", - "integrity": "sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA==", + "node_modules/jest-haste-map/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "good-listener": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", - "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", - "dev": true, - "optional": true, - "requires": { - "delegate": "^3.1.2" + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "graceful-fs": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", - "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", - "optional": true + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "gud": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", - "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "hammerjs": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", - "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=" + "node_modules/jest-jasmine2/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" + "node_modules/jest-jasmine2/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + "node_modules/jest-jasmine2/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + "node_modules/jest-jasmine2/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "has-flag": { + "node_modules/jest-jasmine2/node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz", - "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=", - "dev": true, - "requires": { - "is-glob": "^3.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "hast-to-hyperscript": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz", - "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==", + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "@types/unist": "^2.0.3", - "comma-separated-tokens": "^1.0.0", - "property-information": "^5.3.0", - "space-separated-tokens": "^1.0.0", - "style-to-object": "^0.3.0", - "unist-util-is": "^4.0.0", - "web-namespaces": "^1.0.0" + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "hast-util-from-parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", - "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "requires": { - "@types/parse5": "^5.0.0", - "hastscript": "^6.0.0", - "property-information": "^5.0.0", - "vfile": "^4.0.0", - "vfile-location": "^3.2.0", - "web-namespaces": "^1.0.0" - } - }, - "hast-util-parse-selector": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", - "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", - "dev": true + "engines": { + "node": ">=8" + } }, - "hast-util-raw": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz", - "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==", + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "hast-util-from-parse5": "^6.0.0", - "hast-util-to-parse5": "^6.0.0", - "html-void-elements": "^1.0.0", - "parse5": "^6.0.0", - "unist-util-position": "^3.0.0", - "vfile": "^4.0.0", - "web-namespaces": "^1.0.0", - "xtend": "^4.0.0", - "zwitch": "^1.0.0" - } - }, - "hast-util-to-parse5": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz", - "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==", - "dev": true, - "requires": { - "hast-to-hyperscript": "^9.0.0", - "property-information": "^5.0.0", - "web-namespaces": "^1.0.0", - "xtend": "^4.0.0", - "zwitch": "^1.0.0" + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "hastscript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", - "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "requires": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^1.0.0", - "hast-util-parse-selector": "^2.0.0", - "property-information": "^5.0.0", - "space-separated-tokens": "^1.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" - }, - "highlight.js": { - "version": "10.7.2", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.2.tgz", - "integrity": "sha512-oFLl873u4usRM9K63j4ME9u3etNF0PLiJhSQ8rdfuL51Wn3zkD6drf9ZW0dOzjnZI22YYG24z30JcmfCZjMgYg==", + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "history": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", - "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", - "requires": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^3.0.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^1.0.1" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "hoist-non-react-statics": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz", - "integrity": "sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==", - "requires": { - "react-is": "^16.7.0" + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" - }, - "hosted-git-info": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.7.tgz", - "integrity": "sha512-ChkjQtKJ3GI6SsI4O5jwr8q8EPrWCnxuc4Tbx+vRI5x6mDOpjKKltNo1lRlszw3xwgTOSns1ZRBiMmmwpcvLxg==" - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" - }, - "hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "requires": { - "whatwg-encoding": "^1.0.5" + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + "node_modules/jest-message-util/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "html-minifier-terser": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", - "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", - "requires": { - "camel-case": "^4.1.1", - "clean-css": "^4.2.3", - "commander": "^4.1.1", - "he": "^1.2.0", - "param-case": "^3.0.3", - "relateurl": "^0.2.7", - "terser": "^4.6.3" + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" }, - "dependencies": { - "commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "html-tags": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", - "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "html-void-elements": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz", - "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==", - "dev": true + "node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "html-webpack-plugin": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", - "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", - "requires": { - "@types/html-minifier-terser": "^5.0.0", - "@types/tapable": "^1.0.5", - "@types/webpack": "^4.41.8", - "html-minifier-terser": "^5.0.1", - "loader-utils": "^1.2.3", - "lodash": "^4.17.15", - "pretty-error": "^2.1.1", - "tapable": "^1.1.3", - "util.promisify": "1.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - } + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-mock/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dependencies": { - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - } + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "node_modules/jest-mock/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" + "node_modules/jest-mock/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-mock/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "http-parser-js": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", - "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + "node_modules/jest-mock/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "node_modules/jest-mock/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true } } }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "husky": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/husky/-/husky-1.3.1.tgz", - "integrity": "sha512-86U6sVVVf4b5NYSZ0yvv88dRgBSSXXmHaiq5pP4KDj5JVzdwKgBjEtUPOm8hcoytezFwbU+7gotXNhpHdystlg==", - "dev": true, - "requires": { - "cosmiconfig": "^5.0.7", - "execa": "^1.0.0", - "find-up": "^3.0.0", - "get-stdin": "^6.0.0", - "is-ci": "^2.0.0", - "pkg-dir": "^3.0.0", - "please-upgrade-node": "^3.1.1", - "read-pkg": "^4.0.1", - "run-node": "^1.0.0", - "slash": "^2.0.0" + "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "read-pkg": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz", - "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", - "dev": true, - "requires": { - "normalize-package-data": "^2.3.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0" - } - } + "@types/yargs-parser": "*" } }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "node_modules/jest-resolve-dependencies/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "icss-utils": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", - "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", - "requires": { - "postcss": "^7.0.14" + "node_modules/jest-resolve-dependencies/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", - "requires": { - "harmony-reflect": "^1.4.6" + "node_modules/jest-resolve-dependencies/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + "node_modules/jest-resolve-dependencies/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "dev": true, - "optional": true + "node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } }, - "immer": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", - "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "immutable": { - "version": "3.7.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz", - "integrity": "sha1-E7TTyxK++hVIKib+Gy665kAHHks=" + "node_modules/jest-resolve/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "requires": { - "import-from": "^2.1.0" + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", - "requires": { - "resolve-from": "^3.0.0" + "node_modules/jest-resolve/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "import-local": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", - "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, + "node_modules/jest-resolve/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "requires": { - "find-up": "^4.0.0" - } - } + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "node_modules/jest-resolve/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "in-publish": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", - "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==", - "dev": true + "node_modules/jest-resolve/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "node_modules/jest-resolve/node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + "node_modules/jest-resolve/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "node_modules/jest-resolve/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" + "node_modules/jest-resolve/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "node_modules/jest-resolve/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "inline-style-parser": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", - "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", - "dev": true + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/yargs-parser": "*" } }, - "internal-ip": { + "node_modules/jest-runner/node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", - "dev": true + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "requires": { - "loose-envify": "^1.0.0" + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + "node_modules/jest-runner/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "node_modules/jest-runner/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "is-alphabetical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", - "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", - "dev": true + "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "is-alphanumerical": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", - "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", - "dev": true, - "requires": { - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0" + "node_modules/jest-runner/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", - "requires": { - "call-bind": "^1.0.0" + "node_modules/jest-runner/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" + "node_modules/jest-runner/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "requires": { - "call-bind": "^1.0.0" + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "node_modules/jest-runtime/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-callable": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz", - "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==" + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "requires": { - "ci-info": "^2.0.0" + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" } }, - "is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", - "requires": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" - } - }, - "is-core-module": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.3.0.tgz", - "integrity": "sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==", - "requires": { - "has": "^1.0.3" + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + "node_modules/jest-runtime/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } }, - "is-decimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", - "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", - "dev": true + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } + "node_modules/jest-runtime/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" } }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + "node_modules/jest-runtime/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + "node_modules/jest-runtime/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } }, - "is-dom": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-dom/-/is-dom-1.1.0.tgz", - "integrity": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==", - "dev": true, - "requires": { - "is-object": "^1.0.1", - "is-window": "^1.0.2" + "node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", - "dev": true + "node_modules/jest-runtime/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "node_modules/jest-runtime/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", - "dev": true + "node_modules/jest-runtime/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "is-generator-fn": { + "node_modules/jest-runtime/node_modules/mimic-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } }, - "is-glob": { + "node_modules/jest-runtime/node_modules/npm-run-path": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "requires": { - "is-extglob": "^2.1.1" + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-hexadecimal": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", - "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", - "dev": true - }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true + "node_modules/jest-runtime/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "is-mobile": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-2.2.1.tgz", - "integrity": "sha512-6zELsfVFr326eq2CI53yvqq6YBanOxKBybwDT+MbMS2laBnK6Ez8m5XHSuTQQbnKRfpDzCod1CMWW5q3wZYMvA==" + "node_modules/jest-runtime/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } }, - "is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + "node_modules/jest-runtime/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "is-negative-zero": { + "node_modules/jest-runtime/node_modules/strip-final-newline": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz", - "integrity": "sha1-lVOxIbD6wohp2p7UWeIMdUN4hGE=" + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" + "node_modules/jest-runtime/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", - "dev": true + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + "node_modules/jest-snapshot/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "requires": { - "is-path-inside": "^2.1.0" + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "requires": { - "path-is-inside": "^1.0.2" + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" } }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + "node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-regex": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", - "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==", - "requires": { - "has": "^1.0.3" + "node_modules/jest-snapshot/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true + "node_modules/jest-snapshot/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "node_modules/jest-snapshot/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + "node_modules/jest-snapshot/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "requires": { - "has-symbols": "^1.0.1" + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true + "node_modules/jest-snapshot/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true + "node_modules/jest-snapshot/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "is-whitespace-character": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", - "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==", - "dev": true + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } }, - "is-window": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-window/-/is-window-1.0.2.tgz", - "integrity": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=", - "dev": true + "node_modules/jest-snapshot/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "is-word-character": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", - "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==", - "dev": true + "node_modules/jest-snapshot/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" + "node_modules/jest-snapshot/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "node_modules/jest-snapshot/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "requires": { - "node-fetch": "^1.0.1", - "whatwg-fetch": ">=0.10.0" + "node_modules/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "istanbul-lib-coverage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "istanbul-lib-instrument": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", - "requires": { - "@babel/core": "^7.7.5", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" } }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/@types/yargs": { + "version": "15.0.15", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz", + "integrity": "sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==", "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { - "semver": "^6.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/yargs-parser": "*" } }, - "istanbul-lib-source-maps": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "istanbul-reports": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", - "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "iterate-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.1.tgz", - "integrity": "sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==", - "dev": true + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "iterate-value": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz", - "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", - "dev": true, - "requires": { - "es-get-iterator": "^1.0.2", - "iterate-iterator": "^1.0.1" + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "jest": { - "version": "26.6.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", - "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", - "requires": { - "@jest/core": "^26.6.0", - "import-local": "^3.0.2", - "jest-cli": "^26.6.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-cli": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", - "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", - "requires": { - "@jest/core": "^26.6.3", - "@jest/test-result": "^26.6.2", - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "is-ci": "^2.0.0", - "jest-config": "^26.6.3", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "prompts": "^2.0.1", - "yargs": "^15.4.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/jest-validate/node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" } }, - "jest-changed-files": { + "node_modules/jest-validate/node_modules/pretty-format": { "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", - "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", - "requires": { + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dependencies": { "@jest/types": "^26.6.2", - "execa": "^4.0.0", - "throat": "^5.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - }, - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "requires": { - "path-key": "^3.0.0" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - } + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" } }, - "jest-circus": { - "version": "26.6.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", - "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^26.6.0", - "@jest/test-result": "^26.6.0", - "@jest/types": "^26.6.0", - "@types/babel__traverse": "^7.0.4", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^26.6.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^26.6.0", - "jest-matcher-utils": "^26.6.0", - "jest-message-util": "^26.6.0", - "jest-runner": "^26.6.0", - "jest-runtime": "^26.6.0", - "jest-snapshot": "^26.6.0", - "jest-util": "^26.6.0", - "pretty-format": "^26.6.0", - "stack-utils": "^2.0.2", - "throat": "^5.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "jest-config": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", - "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^26.6.3", - "@jest/types": "^26.6.2", - "babel-jest": "^26.6.3", + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", "chalk": "^4.0.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "jest-environment-jsdom": "^26.6.2", - "jest-environment-node": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-jasmine2": "^26.6.3", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2" + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" } }, - "jest-diff": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", - "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", - "requires": { + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", "chalk": "^4.0.0", - "diff-sequences": "^26.6.2", - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-docblock": { - "version": "26.0.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", - "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", - "requires": { - "detect-newline": "^3.0.0" + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "jest-each": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", - "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", - "jest-util": "^26.6.2", - "pretty-format": "^26.6.2" - }, + "node_modules/jest-watch-typeahead/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-environment-jsdom": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", - "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", - "requires": { - "@jest/environment": "^26.6.2", - "@jest/fake-timers": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "jest-mock": "^26.6.2", - "jest-util": "^26.6.2", - "jsdom": "^16.4.0" + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-environment-node": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", - "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", - "requires": { - "@jest/environment": "^26.6.2", - "@jest/fake-timers": "^26.6.2", - "@jest/types": "^26.6.2", + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "jest-mock": "^26.6.2", - "jest-util": "^26.6.2" + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-get-type": { - "version": "26.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", - "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + "node_modules/jest-watch-typeahead/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" }, - "jest-haste-map": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", - "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", - "requires": { - "@jest/types": "^26.6.2", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.1.2", - "graceful-fs": "^4.2.4", - "jest-regex-util": "^26.0.0", - "jest-serializer": "^26.6.2", - "jest-util": "^26.6.2", - "jest-worker": "^26.6.2", - "micromatch": "^4.0.2", - "sane": "^4.0.3", - "walker": "^1.0.7" - }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "jest-jasmine2": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", - "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^26.6.2", - "@jest/source-map": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^26.6.2", - "is-generator-fn": "^2.0.0", - "jest-each": "^26.6.2", - "jest-matcher-utils": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-runtime": "^26.6.3", - "jest-snapshot": "^26.6.2", - "jest-util": "^26.6.2", - "pretty-format": "^26.6.2", - "throat": "^5.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "jest-leak-detector": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", - "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", - "requires": { - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "jest-matcher-utils": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", - "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^26.6.2", - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "jest-message-util": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", - "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@jest/types": "^26.6.2", + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.2", - "pretty-format": "^26.6.2", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", "slash": "^3.0.0", - "stack-utils": "^2.0.2" + "stack-utils": "^2.0.3" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-mock": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", - "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", - "requires": { - "@jest/types": "^26.6.2", - "@types/node": "*" + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" } }, - "jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" - }, - "jest-regex-util": { - "version": "26.0.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", - "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" - }, - "jest-resolve": { - "version": "26.6.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", - "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", - "requires": { - "@jest/types": "^26.6.0", + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.0", - "read-pkg-up": "^7.0.1", - "resolve": "^1.17.0", - "slash": "^3.0.0" + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "jest-resolve-dependencies": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", - "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", - "requires": { - "@jest/types": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-snapshot": "^26.6.2" - } - }, - "jest-runner": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", - "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", - "requires": { - "@jest/console": "^26.6.2", - "@jest/environment": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.7.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-config": "^26.6.3", - "jest-docblock": "^26.0.0", - "jest-haste-map": "^26.6.2", - "jest-leak-detector": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-resolve": "^26.6.2", - "jest-runtime": "^26.6.3", - "jest-util": "^26.6.2", - "jest-worker": "^26.6.2", - "source-map-support": "^0.5.6", - "throat": "^5.0.0" + "node_modules/jest-watch-typeahead/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "jest-runtime": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", - "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", - "requires": { - "@jest/console": "^26.6.2", - "@jest/environment": "^26.6.2", - "@jest/fake-timers": "^26.6.2", - "@jest/globals": "^26.6.2", - "@jest/source-map": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0", - "cjs-module-lexer": "^0.6.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-config": "^26.6.3", - "jest-haste-map": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-mock": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-snapshot": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^15.4.1" + "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "jest-serializer": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", - "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.4" + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", "dependencies": { - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - } + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "jest-snapshot": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", - "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", - "requires": { - "@babel/types": "^7.0.0", - "@jest/types": "^26.6.2", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.0.0", - "chalk": "^4.0.0", - "expect": "^26.6.2", - "graceful-fs": "^4.2.4", - "jest-diff": "^26.6.2", - "jest-get-type": "^26.3.0", - "jest-haste-map": "^26.6.2", - "jest-matcher-utils": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-resolve": "^26.6.2", - "natural-compare": "^1.4.0", - "pretty-format": "^26.6.2", - "semver": "^7.3.2" + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-resolve": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", - "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", - "requires": { - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^26.6.2", - "read-pkg-up": "^7.0.1", - "resolve": "^1.18.1", - "slash": "^3.0.0" - } - }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "jest-util": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", - "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", - "requires": { - "@jest/types": "^26.6.2", + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", "@types/node": "*", + "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "is-ci": "^2.0.0", - "micromatch": "^4.0.2" + "jest-util": "^27.5.1", + "string-length": "^4.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "jest-validate": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", - "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", - "requires": { - "@jest/types": "^26.6.2", - "camelcase": "^6.0.0", - "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", - "leven": "^3.1.0", - "pretty-format": "^26.6.2" + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/yargs-parser": "*" } }, - "jest-watch-typeahead": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", - "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", - "requires": { - "ansi-escapes": "^4.3.1", - "chalk": "^4.0.0", - "jest-regex-util": "^26.0.0", - "jest-watcher": "^26.3.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0" + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "jest-watcher": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", - "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", - "requires": { - "@jest/test-result": "^26.6.2", - "@jest/types": "^26.6.2", + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", "@types/node": "*", - "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^26.6.2", - "string-length": "^4.0.1" + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "requires": { + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { "@types/node": "*", + "jest-util": "^29.5.0", "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" + "supports-color": "^8.0.0" }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "js-base64": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.1.tgz", - "integrity": "sha512-G5x2saUTupU9D/xBY9snJs3TxvwX8EkpLFiYlPpDt/VmMHOXprnSU1nxiTmFbijCX4BLF/cMRIfAcC5BiMYgFQ==", - "dev": true + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "js-string-escape": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", - "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", - "dev": true + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", + "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "bin": { + "jiti": "bin/jiti.js" + } }, - "js-tokens": { + "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "requires": { + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jscodeshift": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/jscodeshift/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jscodeshift/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jscodeshift/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jscodeshift/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jscodeshift/node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/jscodeshift/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jscodeshift/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" } }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "jsdom": { - "version": "16.5.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz", - "integrity": "sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==", - "requires": { + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { "abab": "^2.0.5", - "acorn": "^8.1.0", + "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", @@ -21899,12 +20844,13 @@ "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", + "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", - "is-potential-custom-element-name": "^1.0.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", @@ -21914,2781 +20860,1661 @@ "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", - "ws": "^7.4.4", + "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, - "dependencies": { - "acorn": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.2.2.tgz", - "integrity": "sha512-VrMS8kxT0e7J1EX0p6rI/E0FbfOVcvBpbIqHThFv+f8YrZIlMfVotYcXKVPmTvPW8sW5miJzfUFrrvthUZg8VQ==" - }, - "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true } } }, - "jsesc": { + "node_modules/jsdom/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } }, - "json-parse-even-better-errors": { + "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, - "json-schema-traverse": { + "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, - "json-stable-stringify-without-jsonify": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" }, - "json2mq": { + "node_modules/json2mq": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", - "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", - "requires": { + "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==", + "dependencies": { "string-convert": "^0.2.0" } }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" - }, - "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "requires": { - "minimist": "^1.2.5" + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - } + "engines": { + "node": ">=6" } }, - "jsonfile": { + "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "requires": { - "graceful-fs": "^4.1.6", + "dependencies": { "universalify": "^2.0.0" }, - "dependencies": { - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - } + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" } }, - "jsx-ast-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", - "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", - "requires": { - "array-includes": "^3.1.2", - "object.assign": "^4.1.2" - }, - "dependencies": { - "array-includes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz", - "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "get-intrinsic": "^1.0.1", - "is-string": "^1.0.5" - } - }, - "es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - }, - "is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==" - }, - "is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - } + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" } }, - "junk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", - "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", - "dev": true - }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" - }, - "kind-of": { + "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - }, - "klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.9" + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" } }, - "kleur": { + "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } }, - "klona": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", - "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } }, - "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" }, - "language-tags": { + "node_modules/language-tags": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", - "requires": { + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { "language-subtag-registry": "~0.3.2" } }, - "last-call-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", - "requires": { - "lodash": "^4.17.5", - "webpack-sources": "^1.1.0" + "node_modules/launch-editor": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.0.tgz", + "integrity": "sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" } }, - "lazy-universal-dotenv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz", - "integrity": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.5.0", + "node_modules/lazy-universal-dotenv": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", + "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", + "dependencies": { "app-root-dir": "^1.0.2", - "core-js": "^3.0.4", - "dotenv": "^8.0.0", - "dotenv-expand": "^5.1.0" + "dotenv": "^16.0.0", + "dotenv-expand": "^10.0.0" }, - "dependencies": { - "core-js": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.13.1.tgz", - "integrity": "sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==", - "dev": true - } + "engines": { + "node": ">=14.0.0" } }, - "less": { - "version": "3.12.2", - "resolved": "https://registry.npmjs.org/less/-/less-3.12.2.tgz", - "integrity": "sha512-+1V2PCMFkL+OIj2/HrtrvZw0BC0sYLMICJfbQjuj/K8CEnlrFX6R5cKKgzzttsZDHyxQNL1jqMREjKN3ja/E3Q==", + "node_modules/less": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/less/-/less-4.1.3.tgz", + "integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==", "dev": true, - "requires": { + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { "errno": "^0.1.1", "graceful-fs": "^4.1.2", "image-size": "~0.5.0", "make-dir": "^2.1.0", "mime": "^1.4.1", - "native-request": "^1.0.5", - "source-map": "~0.6.0", - "tslib": "^1.10.0" - }, - "dependencies": { - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - } + "needle": "^3.1.0", + "source-map": "~0.6.0" } }, - "less-loader": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-7.2.1.tgz", - "integrity": "sha512-4v83WZ7KGbluOWPgk3iNjreAaJDNStfmmdfJbQIib3Jlc8mejV3w6A9xU+EkaivjBVqwQEK0y8cFthyNeGnrTQ==", + "node_modules/less-loader": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", + "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", "dev": true, - "requires": { - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, "dependencies": { - "@types/json-schema": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", - "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true - }, - "json5": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", - "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "klona": "^2.0.4" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "less": "^3.5.0 || ^4.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" } }, - "leven": { + "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } }, - "levn": { + "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "requires": { + "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, - "lint-staged": { - "version": "10.5.3", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.3.tgz", - "integrity": "sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==", + "node_modules/lint-staged": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.2.tgz", + "integrity": "sha512-71gSwXKy649VrSU09s10uAT0rWCcY3aewhMaHyl2N84oBk4Xs9HgxvUp3AYu+bNsK4NrOYYxvSgg7FyGJ+jGcA==", "dev": true, - "requires": { - "chalk": "^4.1.0", - "cli-truncate": "^2.1.0", - "commander": "^6.2.0", - "cosmiconfig": "^7.0.0", - "debug": "^4.2.0", - "dedent": "^0.7.0", - "enquirer": "^2.3.6", - "execa": "^4.1.0", - "listr2": "^3.2.2", - "log-symbols": "^4.0.0", - "micromatch": "^4.0.2", + "dependencies": { + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", - "please-upgrade-node": "^3.2.0", - "string-argv": "0.3.1", - "stringify-object": "^3.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true - }, - "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "dev": true - }, - "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "parse-json": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", - "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "yaml": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", - "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==", - "dev": true - } + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.2" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "listr2": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.2.3.tgz", - "integrity": "sha512-vUb80S2dSUi8YxXahO8/I/s29GqnOL8ozgHVLjfWQXa03BNEeS1TpBLjh2ruaqq5ufx46BRGvfymdBSuoXET5w==", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true, - "requires": { - "chalk": "^4.1.0", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/lint-staged/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "dev": true, + "dependencies": { "cli-truncate": "^2.1.0", - "figures": "^3.2.0", - "indent-string": "^4.0.0", + "colorette": "^2.0.19", "log-update": "^4.0.0", "p-map": "^4.0.0", - "rxjs": "^6.6.3", - "through": "^2.3.8" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "rxjs": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", - "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true } } }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "node_modules/listr2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "requires": { + "node_modules/listr2/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/listr2/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" } }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "lodash": { + "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" - }, - "lodash.debounce": { + "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" }, - "lodash.flow": { + "node_modules/lodash.flow": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=", - "dev": true + "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" }, - "lodash.get": { + "node_modules/lodash.get": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" }, - "lodash.memoize": { + "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" }, - "lodash.merge": { + "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" }, - "lodash.template": { + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "requires": { - "lodash._reinterpolate": "^3.0.0" + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" - }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } }, - "log-symbols": { + "node_modules/log-symbols/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", - "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", - "dev": true, - "requires": { - "chalk": "^4.0.0" - }, + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "log-update": { + "node_modules/log-update": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, - "requires": { + "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", "slice-ansi": "^4.0.0", "wrap-ansi": "^6.2.0" }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "loglevel": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", - "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } }, - "loose-envify": { + "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { + "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" } }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lower-case": { + "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "requires": { + "dependencies": { "tslib": "^2.0.3" - }, + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } + "yallist": "^3.0.2" } }, - "lowlight": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz", - "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==", + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, - "requires": { - "fault": "^1.0.0", - "highlight.js": "~10.7.0" + "bin": { + "lz-string": "bin/bin.js" } }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { - "yallist": "^4.0.0" + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" } }, - "lz-string": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", - "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=", - "dev": true - }, - "magic-string": { - "version": "0.25.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", - "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", - "requires": { - "sourcemap-codec": "^1.4.4" + "node_modules/make-cancellable-promise": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/make-cancellable-promise/-/make-cancellable-promise-1.2.1.tgz", + "integrity": "sha512-nigEn7brgUhjUb2lEobWUW4ZiJdIZ/Wct0UsmDsqaZhgLMvY1OC6FGLa/5SU2RvnyuilkjM7g5JGxt6CJZQGNw==", + "funding": { + "url": "https://github.com/wojtekmaj/make-cancellable-promise?sponsor=1" } }, - "make-cancellable-promise": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/make-cancellable-promise/-/make-cancellable-promise-1.0.0.tgz", - "integrity": "sha512-+YO6Grg2uy/z8Mv3uV90OP6yAUHIF43YGgEFbejmBrK9VWFsVO6DvzFMcopXr9wCNg3/QIltIKiSCROC7zFB2g==" - }, - "make-dir": { + "node_modules/make-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "requires": { + "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" } }, - "make-error": { + "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "peer": true }, - "make-event-props": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/make-event-props/-/make-event-props-1.2.0.tgz", - "integrity": "sha512-BmWFkm/jZzVH9A0tEBdkjAARUz/eha+5IRyfOndeSMKRadkgR5DawoBHoRwLxkYmjJOI5bHkXKpaZocxj+dKgg==" + "node_modules/make-event-props": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/make-event-props/-/make-event-props-1.5.0.tgz", + "integrity": "sha512-ubtzzj95Ga0t/LoINWPjqQWIxbb1SJ6td7YygKzx8kX5ywu/dpN0YnCsjzJOTxFXKsb/1SJBzy+uBAMnKWMVDw==", + "funding": { + "url": "https://github.com/wojtekmaj/make-event-props?sponsor=1" + } }, - "make-plural": { + "node_modules/make-plural": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/make-plural/-/make-plural-6.2.2.tgz", "integrity": "sha512-8iTuFioatnTTmb/YJjywkVIHLjcwkFD9Ms0JpxjEm9Mo8eQYkh1z+55dwv4yc1jQ8ftVBxWQbihvZL1DfzGGWA==" }, - "makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", - "requires": { - "tmpl": "1.0.x" + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" } }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-or-similar": { + "node_modules/map-or-similar": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", - "integrity": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "requires": { - "object-visit": "^1.0.0" - } - }, - "markdown-escapes": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", - "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==", - "dev": true - }, - "markdown-to-jsx": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.1.3.tgz", - "integrity": "sha512-jtQ6VyT7rMT5tPV0g2EJakEnXLiPksnvlYtwQsVVZ611JsWGN8bQ1tVSDX4s6JllfEH6wmsYxNjTUAMrPmNA8w==", - "dev": true - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==" }, - "mdast-squeeze-paragraphs": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz", - "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==", + "node_modules/markdown-to-jsx": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", + "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", "dev": true, - "requires": { - "unist-util-remove": "^2.0.0" + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "react": ">= 0.14.0" } }, - "mdast-util-definitions": { + "node_modules/mdast-util-definitions": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", "dev": true, - "requires": { - "unist-util-visit": "^2.0.0" - } - }, - "mdast-util-to-hast": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz", - "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==", - "dev": true, - "requires": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "mdast-util-definitions": "^4.0.0", - "mdurl": "^1.0.0", - "unist-builder": "^2.0.0", - "unist-util-generated": "^1.0.0", - "unist-util-position": "^3.0.0", + "dependencies": { "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "mdast-util-to-string": { + "node_modules/mdast-util-to-string": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", - "dev": true + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } }, - "mdn-data": { + "node_modules/mdn-data": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, - "mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=", - "dev": true - }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } }, - "memfs": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz", - "integrity": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==", - "dev": true, - "requires": { - "fs-monkey": "1.0.3" + "node_modules/memfs": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz", + "integrity": "sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==", + "dependencies": { + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" } }, - "memoizerific": { + "node_modules/memoizerific": { "version": "1.11.3", "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", - "integrity": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=", - "dev": true, - "requires": { - "map-or-similar": "^1.5.0" - } - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "requires": { - "repeating": "^2.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "requires": { - "get-stdin": "^4.0.1" - } - } + "map-or-similar": "^1.5.0" } }, - "merge-class-names": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/merge-class-names/-/merge-class-names-1.4.0.tgz", - "integrity": "sha512-xNdBM7s+6uD+vNZJEymqrFbMBCDGzoA8clZTcj2F1XIy1QQKF+wjFVv7iDZFfdCBnViTdt54A4Ye2lmBsXrBjQ==" - }, - "merge-descriptors": { + "node_modules/merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, - "merge-refs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/merge-refs/-/merge-refs-1.0.0.tgz", - "integrity": "sha512-WZ4S5wqD9FCR9hxkLgvcHJCBxzXzy3VVE6p8W2OzxRzB+hLRlcadGE2bW9xp2KSzk10rvp4y+pwwKO6JQVguMg==" + "node_modules/merge-refs": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/merge-refs/-/merge-refs-1.1.3.tgz", + "integrity": "sha512-di/iXo7YUDHs38KoIROE2BQvL6xmqiKYpNQSM0NG2jdvikvhJOeihXXyOXXMKkoMxdCXF2SvyxTJ92NuRA5wfA==", + "dependencies": { + "@types/react": "*" + }, + "funding": { + "url": "https://github.com/wojtekmaj/merge-refs?sponsor=1" + } }, - "merge-stream": { + "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" }, - "merge2": { + "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - }, - "messageformat-parser": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/messageformat-parser/-/messageformat-parser-4.1.3.tgz", - "integrity": "sha512-2fU3XDCanRqeOCkn7R5zW5VQHWf+T3hH65SzuqRvjatBK7r4uyFa5mEX+k6F9Bd04LVM5G4/BHBTUJsOdW7uyg==" + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } }, - "methods": { + "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "microevent.ts": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", - "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } }, - "micromatch": { + "node_modules/micromatch": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "requires": { + "dependencies": { "braces": "^3.0.1", "picomatch": "^2.0.5" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "engines": { + "node": ">=8" } }, - "mime": { + "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.43.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", - "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "mime-types": { - "version": "2.1.26", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", - "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", - "requires": { - "mime-db": "1.43.0" + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" } }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "requires": { - "dom-walk": "^0.1.0" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mimic-response": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", + "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", + "optional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "min-indent": { + "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true - }, - "mini-create-react-context": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.0.tgz", - "integrity": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==", - "requires": { - "@babel/runtime": "^7.5.5", - "tiny-warning": "^1.0.3" - } - }, - "mini-css-extract-plugin": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", - "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", - "requires": { - "loader-utils": "^1.1.0", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } + "dev": true, + "engines": { + "node": ">=4" } }, - "mini-store": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mini-store/-/mini-store-2.0.0.tgz", - "integrity": "sha512-EG0CuwpQmX+XL4QVS0kxNwHW5ftSbhygu1qxQH0pipugjnPkbvkalCdQbEihMwtQY6d3MTN+MS0q+aurs+RfLQ==", - "requires": { - "hoist-non-react-statics": "^2.3.1", - "prop-types": "^15.6.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.0.2" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" - } + "node_modules/mini-css-extract-plugin": { + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, - "minipass": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", - "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", - "requires": { - "yallist": "^4.0.0" + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "requires": { - "minipass": "^3.0.0" + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "requires": { - "minipass": "^3.0.0" + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "requires": { - "minipass": "^3.0.0" + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" } }, - "minizlib": { + "node_modules/minizlib": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "requires": { + "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" } }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "moment": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", - "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==" + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "requires": { - "dns-packet": "^1.3.1", + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" } }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" - }, - "mutationobserver-shim": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz", - "integrity": "sha512-gciOLNN8Vsf7YzcqRjKzlAJ6y7e+B86u7i3KXes0xfxx/nfLmozlW1Vn+Sc9x3tPIePFgc1AeIFhtRgkqTjzDQ==" - }, - "mute-stream": { + "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "nan": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", - "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" - }, - "nanoid": { - "version": "3.1.22", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz", - "integrity": "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==" - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" } }, - "native-request": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.7.tgz", - "integrity": "sha512-9nRjinI9bmz+S7dgNtf4A70+/vPhnd+2krGpy4SUlADuOuSa24IDkNaZ+R/QT1wQ6S8jBdi6wE7fLekFZNfUpQ==", - "dev": true, + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", "optional": true }, - "native-url": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", - "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", - "requires": { - "querystring": "^0.2.0" + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "natural-compare": { + "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" }, - "neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + "node_modules/needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } }, - "nested-error-stacks": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz", - "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==", - "dev": true + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "node_modules/needle/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, - "no-case": { + "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "requires": { + "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } } }, - "node-dir": { + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node_modules/node-dir": { "version": "0.1.17", "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=", - "dev": true, - "requires": { + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "dependencies": { "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" } }, - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" + "node_modules/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + "node_modules/node-fetch-native": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.1.1.tgz", + "integrity": "sha512-9VvspTSUp2Sxbl+9vbZTlFGq9lHwE8GDVVekxx6YsNd1YH59sb3Ba8v3Y3cD8PkLNcileGGcA21PFjVl0jzDaw==" + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } }, - "node-gettext": { + "node_modules/node-gettext": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/node-gettext/-/node-gettext-3.0.0.tgz", "integrity": "sha512-/VRYibXmVoN6tnSAY2JWhNRhWYJ8Cd844jrZU/DwLVoI4vBI6ceYbd8i42sYZ9uOgDH3S7vslIKOWV/ZrT2YBA==", "dev": true, - "requires": { + "dependencies": { "lodash.get": "^4.4.2" } }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "dev": true, - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - }, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true - } - } - }, - "node-int64": { + "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - } - } + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" }, - "node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + "node_modules/node-releases": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", + "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" }, - "node-notifier": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", - "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "optional": true, - "requires": { - "growly": "^1.3.0", - "is-wsl": "^2.2.0", - "semver": "^7.3.2", - "shellwords": "^0.1.1", - "uuid": "^8.3.0", - "which": "^2.0.2" - }, "dependencies": { - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "optional": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "node-sass": { - "version": "4.14.1", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz", - "integrity": "sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==", - "dev": true, - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash": "^4.17.15", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.13.2", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", - "request": "^2.88.0", - "sass-graph": "2.2.5", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - } - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true, - "requires": { "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" } }, - "normalize-package-data": { + "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "requires": { + "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, - "normalize-path": { + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } }, - "normalize-range": { + "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" } }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "requires": { - "path-key": "^2.0.0" + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "requires": { - "boolbase": "~1.0.0" + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } }, - "nwsapi": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "node_modules/nwsapi": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.4.tgz", + "integrity": "sha512-NHj4rzRo0tQdijE9ZqAx6kYDcoRwYwSYzCA8MY3JzfxlrvEU0jhnhJT9BhqhJs7I/dKcrDm6TyulaRqZPIhN5g==" }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" } }, - "object-inspect": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", - "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==" + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "object-is": { + "node_modules/object-is": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "requires": { + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object-keys": { + "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "requires": { - "isobject": "^3.0.0" + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" } }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.entries": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", - "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dependencies": { - "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz", - "integrity": "sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" } }, - "object.fromentries": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.3.tgz", - "integrity": "sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dependencies": { - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.getownpropertydescriptors": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", - "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", - "requires": { + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz", + "integrity": "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==", + "dependencies": { + "array.prototype.reduce": "^1.0.5", "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "safe-array-concat": "^1.0.0" }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - } - }, - "object-inspect": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz", - "integrity": "sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "requires": { - "isobject": "^3.0.1" + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.values": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz", - "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", - "has": "^1.0.3" + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "objectorarray": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.4.tgz", - "integrity": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==", + "node_modules/objectorarray": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", "dev": true }, - "obuf": { + "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" }, - "omit.js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/omit.js/-/omit.js-1.0.2.tgz", - "integrity": "sha512-/QPc6G2NS+8d4L/cQhbk6Yit1WTB6Us2g84A7A/1+w9d/eRGHyEqC5kkQtHVoHZ5NFWGG7tUGgrhVZwgZanKrQ==", - "requires": { - "babel-runtime": "^6.23.0" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "on-headers": { + "node_modules/on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } }, - "once": { + "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { "wrappy": "1" } }, - "onetime": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", - "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", - "requires": { - "mimic-fn": "^2.1.0" + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "requires": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "requires": { - "is-wsl": "^1.1.0" + "node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optionator/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dependencies": { - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - } + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "optimize-css-assets-webpack-plugin": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", - "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", - "requires": { - "cssnano": "^4.1.10", - "last-call-webpack-plugin": "^3.0.0" + "node_modules/optionator/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "node_modules/optionator/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "ora": { + "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { + "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", @@ -24699,2765 +22525,2864 @@ "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "requires": { - "url-parse": "^1.4.3" + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "overlayscrollbars": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz", - "integrity": "sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==", - "dev": true + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "p-all": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-all/-/p-all-2.1.0.tgz", - "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==", - "dev": true, - "requires": { - "p-map": "^2.0.0" - }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "p-each-series": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", - "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" - }, - "p-event": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", - "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, - "requires": { - "p-timeout": "^3.1.0" + "engines": { + "node": ">=0.10.0" } }, - "p-filter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", - "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", - "dev": true, - "requires": { - "p-map": "^2.0.0" - }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dependencies": { - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - } - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-limit": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.2.tgz", - "integrity": "sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==", - "requires": { - "p-try": "^2.0.0" + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-map": { + "node_modules/p-map": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "requires": { + "dependencies": { "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "requires": { - "retry": "^0.12.0" - } - }, - "p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "requires": { - "p-finally": "^1.0.0" + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" }, - "papaparse": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.1.tgz", - "integrity": "sha512-Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA==", + "node_modules/papaparse": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==", "dev": true }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "param-case": { + "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "requires": { + "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } } }, - "parent-module": { + "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { + "dependencies": { "callsites": "^3.0.0" }, - "dependencies": { - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } + "engines": { + "node": ">=6" } }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "parse-entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", - "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, - "requires": { - "character-entities": "^1.0.0", - "character-entities-legacy": "^1.0.0", - "character-reference-invalid": "^1.0.0", - "is-alphanumerical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-hexadecimal": "^1.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "engines": { + "node": ">= 0.10" } }, - "parse5": { + "node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } }, - "pascal-case": { + "node_modules/pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "requires": { + "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" - } } }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } }, - "path-key": { + "node_modules/path2d-polyfill": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "resolved": "https://registry.npmjs.org/path2d-polyfill/-/path2d-polyfill-2.0.1.tgz", + "integrity": "sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==", + "engines": { + "node": ">=8" + } }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + "node_modules/pathe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", + "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==" }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", - "requires": { - "isarray": "0.0.1" + "node_modules/pdfjs-dist": { + "version": "3.6.172", + "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-3.6.172.tgz", + "integrity": "sha512-bfOhCg+S9DXh/ImWhWYTOiq3aVMFSCvzGiBzsIJtdMC71kVWDBw7UXr32xh0y56qc5wMVylIeqV3hBaRsu+e+w==", + "dependencies": { + "path2d-polyfill": "^2.0.1", + "web-streams-polyfill": "^3.2.1" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "canvas": "^2.11.2" } }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "node_modules/peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "dependencies": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } }, - "pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "pdfjs-dist": { - "version": "2.6.347", - "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-2.6.347.tgz", - "integrity": "sha512-QC+h7hG2su9v/nU1wEI3SnpPIrqJODL7GTDFvR74ANKGq1AFJW16PH8VWnhpiTi9YcLSFV9xLeWSgq+ckHLdVQ==" - }, - "performance-now": { + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, - "picomatch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz", - "integrity": "sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==" + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "requires": { - "pinkie": "^2.0.0" + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", - "requires": { - "node-modules-regexp": "^1.0.0" + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "pkg-dir": { + "node_modules/pkg-up/node_modules/p-locate": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "requires": { - "find-up": "^3.0.0" - } - }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "requires": { - "find-up": "^3.0.0" + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", - "dev": true, - "requires": { - "semver-compare": "^1.0.0" + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" } }, - "plurals-cldr": { + "node_modules/plurals-cldr": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/plurals-cldr/-/plurals-cldr-1.0.4.tgz", "integrity": "sha512-4nLXqtel7fsCgzi8dvRZvUjfL8SXpP982sKg7b2TgpnR8rDnes06iuQ83trQ/+XdtyMIQkBBbKzX6x97eLfsJQ==", "dev": true }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "requires": { + "node_modules/pnp-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==", + "dev": true, + "dependencies": { "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" } }, - "pofile": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pofile/-/pofile-1.1.1.tgz", - "integrity": "sha512-RVAzFGo1Mx9+YukVKSgTLut6r4ZVBW8IVrqGHAPfEsVJN93WSp5HRD6+qNa7av1q/joPKDNJd55m5AJl9GBQGA==", + "node_modules/pofile": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/pofile/-/pofile-1.1.4.tgz", + "integrity": "sha512-r6Q21sKsY1AjTVVjOuU02VYKVNQGJNQHjTIvs4dEbeuuYfxgYk/DGD2mqqq4RDaVkwdSq0VEtmQUOPe/wH8X3g==", "dev": true }, - "polished": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.1.2.tgz", - "integrity": "sha512-jq4t3PJUpVRcveC53nnbEX35VyQI05x3tniwp26WFdm1dwaNUBHAi5awa/roBlwQxx1uRhwNSYeAi/aMbfiJCQ==", + "node_modules/polished": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", + "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", "dev": true, - "requires": { - "@babel/runtime": "^7.13.17" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "dependencies": { + "@babel/runtime": "^7.17.8" + }, + "engines": { + "node": ">=10" } }, - "portfinder": { - "version": "1.0.28", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", - "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.5" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } + "node_modules/postcss": { + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } + { + "type": "github", + "url": "https://github.com/sponsors/ai" } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - }, - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-attribute-case-insensitive": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", - "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^6.0.2" + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" } }, - "postcss-browser-comments": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", - "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", - "requires": { - "postcss": "^7" + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "postcss-calc": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", - "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", - "requires": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" } }, - "postcss-color-functional-notation": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", - "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-color-gray": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", - "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-color-hex-alpha": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", - "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", - "requires": { - "postcss": "^7.0.14", - "postcss-values-parser": "^2.0.1" + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-color-mod-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", - "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-color-rebeccapurple": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", - "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", - "requires": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-custom-media": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", - "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", - "requires": { - "postcss": "^7.0.14" + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-custom-properties": { - "version": "8.0.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", - "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", - "requires": { - "postcss": "^7.0.17", - "postcss-values-parser": "^2.0.1" + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-custom-selectors": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", - "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-dir-pseudo-class": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", - "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", - "requires": { - "postcss": "^7.0.0" + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", - "requires": { - "postcss": "^7.0.0" + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", - "requires": { - "postcss": "^7.0.0" + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" } }, - "postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", - "requires": { - "postcss": "^7.0.0" + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-double-position-gradients": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", - "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", - "requires": { - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-env-function": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", - "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-flexbugs-fixes": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", - "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", - "requires": { - "postcss": "^7.0.26" + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-focus-visible": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", - "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-focus-within": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", - "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "postcss-font-variant": { + "node_modules/postcss-initial": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", - "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", - "requires": { - "postcss": "^7.0.2" + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" } }, - "postcss-gap-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", - "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" } }, - "postcss-image-set-function": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", - "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-initial": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", - "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "postcss-lab-function": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", - "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "postcss-load-config": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", - "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" + "node_modules/postcss-loader/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" } }, - "postcss-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", - "requires": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } + "node_modules/postcss-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "postcss-logical": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", - "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "postcss-media-minmax": { + "node_modules/postcss-loader/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", - "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", - "requires": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/postcss-loader/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" } }, - "postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", - "requires": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" - }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", - "requires": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", - "requires": { - "postcss": "^7.0.5" + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-modules-local-by-default": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", - "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", - "requires": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.32", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dependencies": { + "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" - } - }, - "postcss-modules-values": { + "node_modules/postcss-modules-scope": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", - "requires": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-nesting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", - "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-normalize": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", - "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", - "requires": { - "@csstools/normalize.css": "^10.1.0", - "browserslist": "^4.6.2", - "postcss": "^7.0.17", - "postcss-browser-comments": "^3.0.0", - "sanitize.css": "^10.0.0" + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" } }, - "postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", - "requires": { - "postcss": "^7.0.0" + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" } }, - "postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", - "requires": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-overflow-shorthand": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", - "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-page-break": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", - "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-place": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", - "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-preset-env": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", - "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", - "requires": { - "autoprefixer": "^9.6.1", - "browserslist": "^4.6.4", - "caniuse-lite": "^1.0.30000981", - "css-blank-pseudo": "^0.1.4", - "css-has-pseudo": "^0.10.0", - "css-prefers-color-scheme": "^3.1.1", - "cssdb": "^4.4.0", - "postcss": "^7.0.17", - "postcss-attribute-case-insensitive": "^4.0.1", - "postcss-color-functional-notation": "^2.0.1", - "postcss-color-gray": "^5.0.0", - "postcss-color-hex-alpha": "^5.0.3", - "postcss-color-mod-function": "^3.0.3", - "postcss-color-rebeccapurple": "^4.0.1", - "postcss-custom-media": "^7.0.8", - "postcss-custom-properties": "^8.0.11", - "postcss-custom-selectors": "^5.1.2", - "postcss-dir-pseudo-class": "^5.0.0", - "postcss-double-position-gradients": "^1.0.0", - "postcss-env-function": "^2.0.2", - "postcss-focus-visible": "^4.0.0", - "postcss-focus-within": "^3.0.0", - "postcss-font-variant": "^4.0.0", - "postcss-gap-properties": "^2.0.0", - "postcss-image-set-function": "^3.0.1", - "postcss-initial": "^3.0.0", - "postcss-lab-function": "^2.0.1", - "postcss-logical": "^3.0.0", - "postcss-media-minmax": "^4.0.0", - "postcss-nesting": "^7.0.0", - "postcss-overflow-shorthand": "^2.0.0", - "postcss-page-break": "^2.0.0", - "postcss-place": "^4.0.1", - "postcss-pseudo-class-any-link": "^6.0.0", - "postcss-replace-overflow-wrap": "^3.0.0", - "postcss-selector-matches": "^4.0.0", - "postcss-selector-not": "^4.0.0" - } - }, - "postcss-pseudo-class-any-link": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", - "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" } }, - "postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-replace-overflow-wrap": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", - "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", - "requires": { - "postcss": "^7.0.2" + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-safe-parser": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", - "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", - "requires": { - "postcss": "^8.1.0" + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", "dependencies": { - "postcss": { - "version": "8.2.13", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.13.tgz", - "integrity": "sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ==", - "requires": { - "colorette": "^1.2.2", - "nanoid": "^3.1.22", - "source-map": "^0.6.1" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-selector-matches": { + "node_modules/postcss-replace-overflow-wrap": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", - "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" } }, - "postcss-selector-not": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", - "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-selector-parser": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz", - "integrity": "sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg==", - "requires": { + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "postcss-svgo": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", - "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", - "requires": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" } }, - "postcss-value-parser": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", - "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } }, - "postcss-values-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", - "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "prelude-ls": { + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } }, - "prettier": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", - "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", - "dev": true + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } }, - "prettier-linter-helpers": { + "node_modules/prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "requires": { + "dependencies": { "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "pretty-bytes": { + "node_modules/pretty-bytes": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - }, - "pretty-error": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", - "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", - "requires": { - "lodash": "^4.17.20", - "renderkid": "^2.0.4" + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "dependencies": { - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } + "lodash": "^4.17.20", + "renderkid": "^3.0.0" } }, - "pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "requires": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "react-is": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", - "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "pretty-hrtime": { + "node_modules/pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true - }, - "prismjs": { - "version": "1.23.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz", - "integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==", - "dev": true, - "requires": { - "clipboard": "^2.0.0" + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "engines": { + "node": ">= 0.8" } }, - "process": { + "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, - "progress": { + "node_modules/progress": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" - }, - "promise.allsettled": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.4.tgz", - "integrity": "sha512-o73CbvQh/OnPFShxHcHxk0baXR2a1m4ozb85ha0H14VEoi/EJJLa9mnPfEWJx9RjA9MLfhdjZ8I6HhWtBa64Ag==", - "dev": true, - "requires": { - "array.prototype.map": "^1.0.3", - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "get-intrinsic": "^1.0.2", - "iterate-value": "^1.0.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" } }, - "promise.prototype.finally": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz", - "integrity": "sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.0", - "function-bind": "^1.1.1" + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" } }, - "prompts": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", - "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", - "requires": { + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "requires": { + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", - "react-is": "^16.8.1" + "react-is": "^16.13.1" } }, - "property-information": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", - "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", - "dev": true, - "requires": { - "xtend": "^4.0.0" - } + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "requires": { - "forwarded": "~0.1.2", + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" } }, - "prr": { + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true }, - "pseudolocale": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pseudolocale/-/pseudolocale-1.2.0.tgz", - "integrity": "sha512-k0OQFvIlvpRdzR0dPVrrbWX7eE9EaZ6gpZtTlFSDi1Gf9tMy9wiANCNu7JZ0drcKgUri/39a2mBbH0goiQmrmQ==", + "node_modules/pseudolocale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/pseudolocale/-/pseudolocale-1.4.0.tgz", + "integrity": "sha512-fxXgbC2ImT9OAuUyhuqkhxVWFe52flkZoNxIiAfje+PO+MZ427bwIIQDnA8wcRWoRIpPa7JuRPXn1lYq2/LmWA==", "dev": true, - "requires": { + "dependencies": { "commander": "*" } }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "psl": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz", - "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==" - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" }, - "pump": { + "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { + "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "pumpify": { + "node_modules/pumpify": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "requires": { + "dependencies": { "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" - }, + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" } }, - "punycode": { + "node_modules/puppeteer-core": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", + "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==", + "dependencies": { + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "engines": { + "node": ">=8.16.0" + } }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + "node_modules/puppeteer-core/node_modules/agent-base": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", + "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", + "engines": { + "node": ">= 6.0.0" + } }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", - "requires": { - "side-channel": "^1.0.4" + "node_modules/puppeteer-core/node_modules/https-proxy-agent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", + "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", + "dependencies": { + "agent-base": "5", + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "node_modules/puppeteer-core/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" } }, - "querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + "node_modules/puppeteer-core/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "node_modules/puppeteer-core/node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qrcode.react": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/qrcode.react/-/qrcode.react-3.1.0.tgz", + "integrity": "sha512-oyF+Urr3oAMUG/OiOuONL3HXM+53wvuH3mtIWQrYmsXoAq0DkvZp2RYUWFSMFtbdOpuS++9v+WAkzNVkMlNW6Q==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "querystringify": { + "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" }, - "queue-microtask": { + "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "raf": { + "node_modules/raf": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "requires": { + "dependencies": { "performance-now": "^2.1.0" } }, - "ramda": { - "version": "0.27.1", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", - "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==" + "node_modules/ramda": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz", + "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==" }, - "randombytes": { + "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "requires": { - "randombytes": "^2.0.5", + "dependencies": { "safe-buffer": "^5.1.0" } }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc-align": { + "version": "4.0.15", + "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-4.0.15.tgz", + "integrity": "sha512-wqJtVH60pka/nOX7/IspElA8gjPNQKIx/ZqJ6heATCkXpe1Zg4cPVrMD2vC96wjsFFL8WsmhPbx9tdMo1qqlIA==", "dependencies": { - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - } + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "rc-util": "^5.26.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "raw-loader": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz", - "integrity": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==", - "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" + "node_modules/rc-cascader": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-3.12.0.tgz", + "integrity": "sha512-QTeGPTNYX33alozNy9lYg7YKpvYVwquai/mrFRR8mHlHnK7QlqJyMqbs2p7rc5eeKARKMRTUeoN5CfO+Gr9UBw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.3.1", + "rc-select": "~14.5.0", + "rc-tree": "~5.7.0", + "rc-util": "^5.6.1" }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-checkbox": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-3.0.1.tgz", + "integrity": "sha512-k7nxDWxYF+jDI0ZcCvuvj71xONmWRVe5+1MKcERRR9MRyP3tZ69b+yUCSXXh+sik4/Hc9P5wHr2nnUoGS2zBjA==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "@babel/runtime": "^7.10.1", + "classnames": "^2.3.2", + "rc-util": "^5.25.2" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-align": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-2.4.5.tgz", - "integrity": "sha512-nv9wYUYdfyfK+qskThf4BQUSIadeI/dCsfaMZfNEoxm9HwOIioQ+LyqmMK6jWHAZQgOzMLaqawhuBXlF63vgjw==", - "requires": { - "babel-runtime": "^6.26.0", - "dom-align": "^1.7.0", - "prop-types": "^15.5.8", - "rc-util": "^4.0.4" + "node_modules/rc-collapse": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.5.2.tgz", + "integrity": "sha512-/TNiT3DW1t3sUCiVD/DPUYooJZ3BLA93/2rZsB3eM2bGJCCla2X9D2E4tgm7LGMQGy5Atb2lMUn2FQuvQNvavQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dialog": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-9.1.0.tgz", + "integrity": "sha512-5ry+JABAWEbaKyYsmITtrJbZbJys8CtMyzV8Xn4LYuXMeUx5XVHNyJRoqLFE4AzBuXXzOWeaC49cg+XkxK6kHA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/portal": "^1.0.0-8", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.21.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-drawer": { + "version": "6.1.6", + "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-6.1.6.tgz", + "integrity": "sha512-EBRFM9o3lPU5kYh8sFoXYA9KxpdT765HDqj/AbZWicXkhwEYUH7MjUH0ctenPCiHBxXQUgIUvK14+6rPuURd6w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/portal": "^1.0.0-6", + "classnames": "^2.2.6", + "rc-motion": "^2.6.1", + "rc-util": "^5.21.2" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dropdown": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-4.1.0.tgz", + "integrity": "sha512-VZjMunpBdlVzYpEdJSaV7WM7O0jf8uyDjirxXLZRNZ+tAC+NzD3PXPEtliFwGzVwBBdCmGuSqiS9DWcOLxQ9tw==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@rc-component/trigger": "^1.7.0", + "classnames": "^2.2.6", + "rc-util": "^5.17.0" + }, + "peerDependencies": { + "react": ">=16.11.0", + "react-dom": ">=16.11.0" + } + }, + "node_modules/rc-field-form": { + "version": "1.31.0", + "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-1.31.0.tgz", + "integrity": "sha512-3u6crithuSQMfHaDL3rMvzjG5oXJQIgCTxDfT0pJL9kI/C2LWuR8GrApzOvB9gKcf8VvvnejzmSPnsUJz4YGmQ==", + "dependencies": { + "@babel/runtime": "^7.18.0", + "async-validator": "^4.1.0", + "rc-util": "^5.8.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-image": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-5.16.0.tgz", + "integrity": "sha512-11DOye57IgTXh2yTsmxFNynZJG3tdx8RZnnaqb38eYWrBPPyhVHIuURxyiSZ8B68lEUAggR7SBA0Zb95KP/CyQ==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "@rc-component/portal": "^1.0.2", + "classnames": "^2.2.6", + "rc-dialog": "~9.1.0", + "rc-motion": "^2.6.2", + "rc-util": "^5.0.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-input": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/rc-input/-/rc-input-1.0.4.tgz", + "integrity": "sha512-clY4oneVHRtKHYf/HCxT/MO+4BGzCIywSNLosXWOm7fcQAS0jQW7n0an8Raa8JMB8kpxc8m28p7SNwFZmlMj6g==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.18.1" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/rc-input-number": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-7.4.2.tgz", + "integrity": "sha512-yGturTw7WGP+M1GbJ+UTAO7L4buxeW6oilhL9Sq3DezsRS8/9qec4UiXUbeoiX9bzvRXH11JvgskBtxSp4YSNg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/mini-decimal": "^1.0.1", + "classnames": "^2.2.5", + "rc-util": "^5.28.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-animate": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/rc-animate/-/rc-animate-2.10.3.tgz", - "integrity": "sha512-A9qQ5Y8BLlM7EhuCO3fWb/dChndlbWtY/P5QvPqBU7h4r5Q2QsvsbpTGgdYZATRDZbTRnJXXfVk9UtlyS7MBLg==", - "requires": { - "babel-runtime": "6.x", + "node_modules/rc-mentions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.2.0.tgz", + "integrity": "sha512-R7ncCldr02uKgJBBPlXdtnOGQIjZ9C3uoIMi4fabU3CPFdmefYlNF6QM4u2AzgcGt8V0KkoHTN5T6HPdUpet8g==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/trigger": "^1.5.0", "classnames": "^2.2.6", - "css-animation": "^1.3.2", - "prop-types": "15.x", - "raf": "^3.4.0", - "rc-util": "^4.15.3", - "react-lifecycles-compat": "^3.0.4" - } - }, - "rc-calendar": { - "version": "9.15.9", - "resolved": "https://registry.npmjs.org/rc-calendar/-/rc-calendar-9.15.9.tgz", - "integrity": "sha512-XOPzJlXYmLFIcwalXmzxKZrrAMD6dEPLRVoHG3wbBpErqjE8ugnXVjm9yXgtQh3Ho3Imhmt+KO0WGLv5T4WuAA==", - "requires": { - "babel-runtime": "6.x", + "rc-input": "~1.0.0", + "rc-menu": "~9.8.0", + "rc-textarea": "~1.2.0", + "rc-util": "^5.22.5" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-menu": { + "version": "9.8.4", + "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-9.8.4.tgz", + "integrity": "sha512-lmw2j8I2fhdIzHmC9ajfImfckt0WDb2KVJJBBRIsxPEw2kGkEfjLMUoB1NgiNT/Q5cC8PdjGOGQjHJIJMwyNMw==", + "dependencies": { + "@babel/runtime": "^7.10.1", "classnames": "2.x", - "moment": "2.x", - "prop-types": "^15.5.8", - "rc-trigger": "^2.2.0", - "rc-util": "^4.1.1", - "react-lifecycles-compat": "^3.0.4" - } - }, - "rc-cascader": { - "version": "0.17.5", - "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-0.17.5.tgz", - "integrity": "sha512-WYMVcxU0+Lj+xLr4YYH0+yXODumvNXDcVEs5i7L1mtpWwYkubPV/zbQpn+jGKFCIW/hOhjkU4J1db8/P/UKE7A==", - "requires": { - "array-tree-filter": "^2.1.0", - "prop-types": "^15.5.8", - "rc-trigger": "^2.2.0", - "rc-util": "^4.0.4", - "react-lifecycles-compat": "^3.0.4", - "shallow-equal": "^1.0.0", - "warning": "^4.0.1" - } - }, - "rc-checkbox": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-2.1.8.tgz", - "integrity": "sha512-6qOgh0/by0nVNASx6LZnhRTy17Etcgav+IrI7kL9V9kcDZ/g7K14JFlqrtJ3NjDq/Kyn+BPI1st1XvbkhfaJeg==", - "requires": { - "babel-runtime": "^6.23.0", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.2.8", + "rc-trigger": "^5.1.2", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-motion": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.7.3.tgz", + "integrity": "sha512-2xUvo8yGHdOHeQbdI8BtBsCIrWKchEmFEIskf0nmHtJsou+meLd/JE+vnvSX2JxcBrJtXY2LuBpxAOxrbY/wMQ==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.21.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-notification": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-5.0.4.tgz", + "integrity": "sha512-3535oellIRlt1LspERfK8yvCqb8Gio3R02rULciaSc1xe3H7ArTU/khlUTv1ddGzua4HhmF4D4Rwz/+mBxETvg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.6.0", + "rc-util": "^5.20.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-overflow": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.3.0.tgz", + "integrity": "sha512-p2Qt4SWPTHAYl4oAao1THy669Fm5q8pYBDBHRaFOekCvcdcrgIx0ByXQMEkyPm8wUDX4BK6aARWecvCRc/7CTA==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.19.2" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-pagination": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-3.4.2.tgz", + "integrity": "sha512-arFQKD15h26+rSXRnQNA8b/tHy98/853W/leXkas2WlViOYG5A2qgEg7CRX64GKb9TqJjdqnDzaMAvl0qF4Tig==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-picker": { + "version": "3.7.6", + "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-3.7.6.tgz", + "integrity": "sha512-v84wVXjgx5hQ5vTLjMeMMtj6+gn480Gqzwur2A2+o8+eFnhY4jKmuqzHmD8sEevrz0WT/j1pLHFxAV8/lksI2A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/trigger": "^1.5.0", + "classnames": "^2.2.1", + "rc-util": "^5.30.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "date-fns": ">= 2.x", + "dayjs": ">= 1.x", + "luxon": ">= 3.x", + "moment": ">= 2.x", + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + }, + "peerDependenciesMeta": { + "date-fns": { + "optional": true + }, + "dayjs": { + "optional": true + }, + "luxon": { + "optional": true + }, + "moment": { + "optional": true + } + } + }, + "node_modules/rc-progress": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-3.4.1.tgz", + "integrity": "sha512-eAFDHXlk8aWpoXl0llrenPMt9qKHQXphxcVsnKs0FHC6eCSk1ebJtyaVjJUzKe0233ogiLDeEFK1Uihz3s67hw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.16.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-rate": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.10.0.tgz", + "integrity": "sha512-TCjEpKPeN1m0EnGDDbb1KyxjNTJRzoReiPdtbrBJEey4Ryf/UGOQ6vqmz2yC6DJdYVDVUoZPdoz043ryh0t/nQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-resize-observer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.3.1.tgz", + "integrity": "sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "classnames": "^2.2.1", + "rc-util": "^5.27.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-segmented": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/rc-segmented/-/rc-segmented-2.2.2.tgz", + "integrity": "sha512-Mq52M96QdHMsNdE/042ibT5vkcGcD5jxKp7HgPC2SRofpia99P5fkfHy1pEaajLMF/kj0+2Lkq1UZRvqzo9mSA==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-motion": "^2.4.4", + "rc-util": "^5.17.0" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/rc-select": { + "version": "14.5.1", + "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-14.5.1.tgz", + "integrity": "sha512-RQ3yiguq6yJ+kbtip7/6RTq2hOotS/s00nyZL2nxyz5194C6uOtSB8Kgsw3c6ZXII1EDjuJX3zLI1pkxkNWyww==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/trigger": "^1.5.0", "classnames": "2.x", - "prop-types": "15.x", - "react-lifecycles-compat": "^3.0.4" + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.5.2" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-slider": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-10.1.1.tgz", + "integrity": "sha512-gn8oXazZISEhnmRinI89Z/JD/joAaM35jp+gDtIVSTD/JJMCCBqThqLk1SVJmvtfeiEF/kKaFY0+qt4SDHFUDw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.27.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-steps": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-6.0.0.tgz", + "integrity": "sha512-+KfMZIty40mYCQSDvYbZ1jwnuObLauTiIskT1hL4FFOBHP6ZOr8LK0m143yD3kEN5XKHSEX1DIwCj3AYZpoeNQ==", + "dependencies": { + "@babel/runtime": "^7.16.7", + "classnames": "^2.2.3", + "rc-util": "^5.16.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-collapse": { - "version": "1.11.8", - "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-1.11.8.tgz", - "integrity": "sha512-8EhfPyScTYljkbRuIoHniSwZagD5UPpZ3CToYgoNYWC85L2qCbPYF7+OaC713FOrIkp6NbfNqXsITNxmDAmxog==", - "requires": { - "classnames": "2.x", - "css-animation": "1.x", - "prop-types": "^15.5.6", - "rc-animate": "2.x", - "react-is": "^16.7.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" + "node_modules/rc-switch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-4.1.0.tgz", + "integrity": "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "classnames": "^2.2.1", + "rc-util": "^5.30.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-dialog": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-7.6.0.tgz", - "integrity": "sha512-N48vBPW8I53WycFHI4KXhuTUkB4mx+hixq1a9tcFMLoE7EhkAjbHvs0vGg+Bh/uFg5V00jmZBgQOIEbhcNal/A==", - "requires": { - "babel-runtime": "6.x", - "rc-animate": "2.x", - "rc-util": "^4.16.1" + "node_modules/rc-table": { + "version": "7.32.1", + "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.32.1.tgz", + "integrity": "sha512-fHMQteKMocUC9I9Vex3eBLH7QsiaMR/qtzh3B1Ty2PoNGwVTwVdDFyRL05zch+JU3KnNNczgQeVvtf/p//gdrQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/context": "^1.3.0", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.27.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-drawer": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-3.1.3.tgz", - "integrity": "sha512-2z+RdxmzXyZde/1OhVMfDR1e/GBswFeWSZ7FS3Fdd0qhgVdpV1wSzILzzxRaT481ItB5hOV+e8pZT07vdJE8kg==", - "requires": { - "classnames": "^2.2.6", - "rc-util": "^4.16.1", - "react-lifecycles-compat": "^3.0.4" + "node_modules/rc-tabs": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-12.6.0.tgz", + "integrity": "sha512-L9yIptdrmft573MEsc+xKoGbXzfg3V6NYvgT0sNh+PSzWaeF34W7CIPi98lcWjtsYB80oFMOcAXRilUFxLHTaA==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "~4.1.0", + "rc-menu": "~9.8.0", + "rc-motion": "^2.6.2", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.16.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-dropdown": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-2.4.1.tgz", - "integrity": "sha512-p0XYn0wrOpAZ2fUGE6YJ6U8JBNc5ASijznZ6dkojdaEfQJAeZtV9KMEewhxkVlxGSbbdXe10ptjBlTEW9vEwEg==", - "requires": { - "babel-runtime": "^6.26.0", - "classnames": "^2.2.6", - "prop-types": "^15.5.8", - "rc-trigger": "^2.5.1", - "react-lifecycles-compat": "^3.0.2" + "node_modules/rc-textarea": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.2.3.tgz", + "integrity": "sha512-YvN8IskIVBRRzcS4deT0VAMim31+T3IoVX4yoCJ+b/iVCvw7yf0usR7x8OaHiUOUoURKcn/3lfGjmtzplcy99g==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-input": "~1.0.4", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-editor-core": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/rc-editor-core/-/rc-editor-core-0.8.10.tgz", - "integrity": "sha512-T3aHpeMCIYA1sdAI7ynHHjXy5fqp83uPlD68ovZ0oClTSc3tbHmyCxXlA+Ti4YgmcpCYv7avF6a+TIbAka53kw==", - "requires": { - "babel-runtime": "^6.26.0", - "classnames": "^2.2.5", - "draft-js": "^0.10.0", - "immutable": "^3.7.4", - "lodash": "^4.16.5", - "prop-types": "^15.5.8", - "setimmediate": "^1.0.5" - } - }, - "rc-editor-mention": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/rc-editor-mention/-/rc-editor-mention-1.1.13.tgz", - "integrity": "sha512-3AOmGir91Fi2ogfRRaXLtqlNuIwQpvla7oUnGHS1+3eo7b+fUp5IlKcagqtwUBB5oDNofoySXkLBxzWvSYNp/Q==", - "requires": { - "babel-runtime": "^6.23.0", - "classnames": "^2.2.5", - "dom-scroll-into-view": "^1.2.0", - "draft-js": "~0.10.0", - "immutable": "~3.7.4", - "prop-types": "^15.5.8", - "rc-animate": "^2.3.0", - "rc-editor-core": "~0.8.3" - } - }, - "rc-form": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/rc-form/-/rc-form-2.4.11.tgz", - "integrity": "sha512-8BL+FNlFLTOY/A5X6tU35GQJLSIpsmqpwn/tFAYQTczXc4dMJ33ggtH248Cum8+LS0jLTsJKG2L4Qp+1CkY+sA==", - "requires": { - "async-validator": "~1.11.3", - "babel-runtime": "6.x", - "create-react-class": "^15.5.3", - "dom-scroll-into-view": "1.x", - "hoist-non-react-statics": "^3.3.0", - "lodash": "^4.17.4", - "rc-util": "^4.15.3", - "warning": "^4.0.3" - } - }, - "rc-hammerjs": { - "version": "0.6.9", - "resolved": "https://registry.npmjs.org/rc-hammerjs/-/rc-hammerjs-0.6.9.tgz", - "integrity": "sha512-4llgWO3RgLyVbEqUdGsDfzUDqklRlQW5VEhE3x35IvhV+w//VPRG34SBavK3D2mD/UaLKaohgU41V4agiftC8g==", - "requires": { - "babel-runtime": "6.x", - "hammerjs": "^2.0.8", - "prop-types": "^15.5.9" - } - }, - "rc-input-number": { - "version": "4.5.6", - "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-4.5.6.tgz", - "integrity": "sha512-AXbL4gtQ1mSQnu6v/JtMv3UbGRCzLvQznmf0a7U/SAtZ8+dCEAqD4JpJhkjv73Wog53eRYhw4l7ApdXflc9ymg==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.0", - "prop-types": "^15.5.7", - "rc-util": "^4.5.1", - "rmc-feedback": "^2.0.0" - } - }, - "rc-mentions": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-0.4.2.tgz", - "integrity": "sha512-DTZurQzacLXOfVuiHydGzqkq7cFMHXF18l2jZ9PhWUn2cqvOSY3W4osN0Pq29AOMOBpcxdZCzgc7Lb0r/bgkDw==", - "requires": { - "@ant-design/create-react-context": "^0.2.4", - "classnames": "^2.2.6", - "rc-menu": "^7.4.22", - "rc-trigger": "^2.6.2", - "rc-util": "^4.6.0", - "react-lifecycles-compat": "^3.0.4" + "node_modules/rc-tooltip": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-6.0.1.tgz", + "integrity": "sha512-MdvPlsD1fDSxKp9+HjXrc/CxLmA/s11QYIh1R7aExxfodKP7CZA++DG1AjrW80F8IUdHYcR43HAm0Y2BYPelHA==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "@rc-component/trigger": "^1.0.4", + "classnames": "^2.3.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-menu": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-7.5.5.tgz", - "integrity": "sha512-4YJXJgrpUGEA1rMftXN7bDhrV5rPB8oBJoHqT+GVXtIWCanfQxEnM3fmhHQhatL59JoAFMZhJaNzhJIk4FUWCQ==", - "requires": { + "node_modules/rc-tree": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.7.4.tgz", + "integrity": "sha512-7VfDq4jma+6fvlzfDXvUJ34SaO2EWkcXGBmPgeFmVKsLNNXcKGl4cRAhs6Ts1zqnX994vu/hb3f1dyTjn43RFg==", + "dependencies": { + "@babel/runtime": "^7.10.1", "classnames": "2.x", - "dom-scroll-into-view": "1.x", - "mini-store": "^2.0.0", - "mutationobserver-shim": "^0.3.2", - "rc-animate": "^2.10.1", - "rc-trigger": "^2.3.0", - "rc-util": "^4.13.0", - "resize-observer-polyfill": "^1.5.0", - "shallowequal": "^1.1.0" + "rc-motion": "^2.0.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.5.1" + }, + "engines": { + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "rc-notification": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-3.3.1.tgz", - "integrity": "sha512-U5+f4BmBVfMSf3OHSLyRagsJ74yKwlrQAtbbL5ijoA0F2C60BufwnOcHG18tVprd7iaIjzZt1TKMmQSYSvgrig==", - "requires": { - "babel-runtime": "6.x", + "node_modules/rc-tree-select": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-5.9.0.tgz", + "integrity": "sha512-oh3blESzLfLCBPSiVDtZ2irzrWWZUMeHvnSwRvFo79br8Z+K/1OhXhXBZmROvfKwaH8YUugAQy8B2j5EGQbdyA==", + "dependencies": { + "@babel/runtime": "^7.10.1", "classnames": "2.x", - "prop-types": "^15.5.8", - "rc-animate": "2.x", - "rc-util": "^4.0.4" + "rc-select": "~14.5.0", + "rc-tree": "~5.7.0", + "rc-util": "^5.16.1" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "rc-pagination": { - "version": "1.20.14", - "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-1.20.14.tgz", - "integrity": "sha512-sNKwbFrxiqATqcIIShfrFs8BT03n4UUwTAMYae+JhHTmILQmXdvimEnZbVuWcno6G02DAJcLrFpmkn1h2tmEJw==", - "requires": { - "babel-runtime": "6.x", + "node_modules/rc-trigger": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-5.3.4.tgz", + "integrity": "sha512-mQv+vas0TwKcjAO2izNPkqR4j86OemLRmvL2nOzdP9OWNWA1ivoTt5hzFqYNW9zACwmTezRiN8bttrC7cZzYSw==", + "dependencies": { + "@babel/runtime": "^7.18.3", "classnames": "^2.2.6", - "prop-types": "^15.5.7", - "react-lifecycles-compat": "^3.0.4" - } - }, - "rc-progress": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-2.5.2.tgz", - "integrity": "sha512-ajI+MJkbBz9zYDuE9GQsY5gsyqPF7HFioZEDZ9Fmc+ebNZoiSeSJsTJImPFCg0dW/5WiRGUy2F69SX1aPtSJgA==", - "requires": { - "babel-runtime": "6.x", - "prop-types": "^15.5.8" + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.19.2" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-rate": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.5.1.tgz", - "integrity": "sha512-3iJkNJT8xlHklPCdeZtUZmJmRVUbr6AHRlfSsztfYTXVlHrv2TcPn3XkHsH+12j812WVB7gvilS2j3+ffjUHXg==", - "requires": { + "node_modules/rc-upload": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.3.4.tgz", + "integrity": "sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==", + "dependencies": { + "@babel/runtime": "^7.18.3", "classnames": "^2.2.5", - "prop-types": "^15.5.8", - "rc-util": "^4.3.0", - "react-lifecycles-compat": "^3.0.4" + "rc-util": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-resize-observer": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-0.1.3.tgz", - "integrity": "sha512-uzOQEwx83xdQSFOkOAM7x7GHIQKYnrDV4dWxtCxyG1BS1pkfJ4EvDeMfsvAJHSYkQXVBu+sgRHGbRtLG3qiuUg==", - "requires": { - "classnames": "^2.2.1", - "rc-util": "^4.13.0", - "resize-observer-polyfill": "^1.5.1" + "node_modules/rc-util": { + "version": "5.32.2", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.32.2.tgz", + "integrity": "sha512-nfwctiglkgaRjJAnWp0W6BH9Am0cuLOz5HbcBrswQVeLDwnuoholdGex/vZjwug/oq5H1wBwao12DpP61FI1yA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "react-is": "^16.12.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "rc-select": { - "version": "9.2.3", - "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-9.2.3.tgz", - "integrity": "sha512-WhswxOMWiNnkXRbxyrj0kiIvyCfo/BaRPaYbsDetSIAU2yEDwKHF798blCP5u86KLOBKBvtxWLFCkSsQw1so5w==", - "requires": { - "babel-runtime": "^6.23.0", - "classnames": "2.x", - "component-classes": "1.x", - "dom-scroll-into-view": "1.x", - "prop-types": "^15.5.8", - "raf": "^3.4.0", - "rc-animate": "2.x", - "rc-menu": "^7.3.0", - "rc-trigger": "^2.5.4", - "rc-util": "^4.0.4", - "react-lifecycles-compat": "^3.0.2", - "warning": "^4.0.2" - } - }, - "rc-slider": { - "version": "8.7.1", - "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-8.7.1.tgz", - "integrity": "sha512-WMT5mRFUEcrLWwTxsyS8jYmlaMsTVCZIGENLikHsNv+tE8ThU2lCoPfi/xFNUfJFNFSBFP3MwPez9ZsJmNp13g==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.5", - "prop-types": "^15.5.4", - "rc-tooltip": "^3.7.0", - "rc-util": "^4.0.4", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0", - "warning": "^4.0.3" - } + "node_modules/rc-util/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "rc-steps": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-3.5.0.tgz", - "integrity": "sha512-2Vkkrpa7PZbg7qPsqTNzVDov4u78cmxofjjnIHiGB9+9rqKS8oTLPzbW2uiWDr3Lk+yGwh8rbpGO1E6VAgBCOg==", - "requires": { - "babel-runtime": "^6.23.0", - "classnames": "^2.2.3", - "lodash": "^4.17.5", - "prop-types": "^15.5.7" + "node_modules/rc-virtual-list": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.5.2.tgz", + "integrity": "sha512-sE2G9hTPjVmatQni8OP2Kx33+Oth6DMKm67OblBBmgMBJDJQOOFpSGH7KZ6Pm85rrI2IGxDRXZCr0QhYOH2pfQ==", + "dependencies": { + "@babel/runtime": "^7.20.0", + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.15.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "rc-switch": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-1.9.0.tgz", - "integrity": "sha512-Isas+egaK6qSk64jaEw4GgPStY4umYDbT7ZY93bZF1Af+b/JEsKsJdNOU2qG3WI0Z6tXo2DDq0kJCv8Yhu0zww==", - "requires": { - "classnames": "^2.2.1", - "prop-types": "^15.5.6", - "react-lifecycles-compat": "^3.0.4" + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "rc-table": { - "version": "6.10.13", - "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-6.10.13.tgz", - "integrity": "sha512-Pqb83gVWWdmfeE9tR+7vdi9dWO963Vq2n+nz5oE8LOpCkF/1UVLKcw7Som5FHpilOjd44c+wLPIL4H8Gx2i6qg==", - "requires": { - "classnames": "^2.2.5", - "component-classes": "^1.2.6", - "lodash": "^4.17.5", - "mini-store": "^2.0.0", - "prop-types": "^15.5.8", - "rc-util": "^4.13.0", - "react-lifecycles-compat": "^3.0.2", - "shallowequal": "^1.0.2" - } - }, - "rc-tabs": { - "version": "9.7.0", - "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-9.7.0.tgz", - "integrity": "sha512-kvmgp8/MfLzFZ06hWHignqomFQ5nF7BqKr5O1FfhE4VKsGrep52YSF/1MvS5oe0NPcI9XGNS2p751C5v6cYDpQ==", - "requires": { - "@ant-design/create-react-context": "^0.2.4", - "babel-runtime": "6.x", - "classnames": "2.x", - "lodash": "^4.17.5", - "prop-types": "15.x", + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", "raf": "^3.4.1", - "rc-hammerjs": "~0.6.0", - "rc-util": "^4.0.4", - "react-lifecycles-compat": "^3.0.4", - "resize-observer-polyfill": "^1.5.1", - "warning": "^4.0.3" + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" } }, - "rc-time-picker": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/rc-time-picker/-/rc-time-picker-3.7.3.tgz", - "integrity": "sha512-Lv1Mvzp9fRXhXEnRLO4nW6GLNxUkfAZ3RsiIBsWjGjXXvMNjdr4BX/ayElHAFK0DoJqOhm7c5tjmIYpEOwcUXg==", - "requires": { - "classnames": "2.x", - "moment": "2.x", - "prop-types": "^15.5.8", - "raf": "^3.4.1", - "rc-trigger": "^2.2.0", - "react-lifecycles-compat": "^3.0.4" + "node_modules/react-app-rewired": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-app-rewired/-/react-app-rewired-2.2.1.tgz", + "integrity": "sha512-uFQWTErXeLDrMzOJHKp0h8P1z0LV9HzPGsJ6adOtGlA/B9WfT6Shh4j2tLTTGlXOfiVx6w6iWpp7SOC5pvk+gA==", + "dev": true, + "dependencies": { + "semver": "^5.6.0" + }, + "bin": { + "react-app-rewired": "bin/index.js" + }, + "peerDependencies": { + "react-scripts": ">=2.1.3" } }, - "rc-tooltip": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-3.7.3.tgz", - "integrity": "sha512-dE2ibukxxkrde7wH9W8ozHKUO4aQnPZ6qBHtrTH9LoO836PjDdiaWO73fgPB05VfJs9FbZdmGPVEbXCeOP99Ww==", - "requires": { - "babel-runtime": "6.x", - "prop-types": "^15.5.8", - "rc-trigger": "^2.2.2" + "node_modules/react-app-rewired/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "rc-tree": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-2.1.3.tgz", - "integrity": "sha512-COvV65spQ6omrHBUhHRKqKNL5+ddXjlS+qWZchaL9FFuQNvjM5pjp9RnmMWK4fJJ5kBhhpLneh6wh9Vh3kSMXQ==", - "requires": { - "@ant-design/create-react-context": "^0.2.4", - "classnames": "2.x", - "prop-types": "^15.5.8", - "rc-animate": "^2.6.0", - "rc-util": "^4.5.1", - "react-lifecycles-compat": "^3.0.4", - "warning": "^4.0.3" - } - }, - "rc-tree-select": { - "version": "2.9.4", - "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-2.9.4.tgz", - "integrity": "sha512-0HQkXAN4XbfBW20CZYh3G+V+VMrjX42XRtDCpyv6PDUm5vikC0Ob682ZBCVS97Ww2a5Hf6Ajmu0ahWEdIEpwhg==", - "requires": { - "classnames": "^2.2.1", - "dom-scroll-into-view": "^1.2.1", - "prop-types": "^15.5.8", - "raf": "^3.4.0", - "rc-animate": "^2.8.2", - "rc-tree": "~2.1.0", - "rc-trigger": "^3.0.0", - "rc-util": "^4.5.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.0.2", - "warning": "^4.0.1" - }, - "dependencies": { - "rc-trigger": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-3.0.0.tgz", - "integrity": "sha512-hQxbbJpo23E2QnYczfq3Ec5J5tVl2mUDhkqxrEsQAqk16HfADQg+iKNWzEYXyERSncdxfnzYuaBgy764mNRzTA==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.6", - "prop-types": "15.x", - "raf": "^3.4.0", - "rc-align": "^2.4.1", - "rc-animate": "^3.0.0-rc.1", - "rc-util": "^4.15.7" - }, - "dependencies": { - "rc-animate": { - "version": "3.0.0-rc.6", - "resolved": "https://registry.npmjs.org/rc-animate/-/rc-animate-3.0.0-rc.6.tgz", - "integrity": "sha512-oBLPpiT6Q4t6YvD/pkLcmofBP1p01TX0Otse8Q4+Mxt8J+VSDflLZGIgf62EwkvRwsQUkLPjZVFBsldnPKLzjg==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.5", - "component-classes": "^1.2.6", - "fbjs": "^0.8.16", - "prop-types": "15.x", - "raf": "^3.4.0", - "rc-util": "^4.5.0", - "react-lifecycles-compat": "^3.0.4" - } - } - } - } + "node_modules/react-colorful": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", + "dev": true, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" } }, - "rc-trigger": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-2.6.5.tgz", - "integrity": "sha512-m6Cts9hLeZWsTvWnuMm7oElhf+03GOjOLfTuU0QmdB9ZrW7jR2IpI5rpNM7i9MvAAlMAmTx5Zr7g3uu/aMvZAw==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.6", - "prop-types": "15.x", - "rc-align": "^2.4.0", - "rc-animate": "2.x", - "rc-util": "^4.4.0", - "react-lifecycles-compat": "^3.0.4" - } - }, - "rc-upload": { - "version": "2.9.4", - "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-2.9.4.tgz", - "integrity": "sha512-WXt0HGxXyzLrPV6iec/96Rbl/6dyrAW8pKuY6wwD7yFYwfU5bjgKjv7vC8KNMJ6wzitFrZjnoiogNL3dF9dj3Q==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.5", - "prop-types": "^15.5.7", - "warning": "4.x" - } - }, - "rc-util": { - "version": "4.20.0", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.20.0.tgz", - "integrity": "sha512-rUqk4RqtDe4OfTsSk2GpbvIQNVtfmmebw4Rn7ZAA1TO1zLMLfyOF78ZyrEKqs8RDwoE3S1aXp0AX0ogLfSxXrQ==", - "requires": { - "add-dom-event-listener": "^1.1.0", - "babel-runtime": "6.x", - "prop-types": "^15.5.10", - "react-is": "^16.12.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" - } - }, - "react": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", - "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "react-app-polyfill": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", - "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", - "requires": { - "core-js": "^3.6.5", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.7", - "whatwg-fetch": "^3.4.1" - }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "core-js": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.11.1.tgz", - "integrity": "sha512-k93Isqg7e4txZWMGNYwevZL9MiogLk8pd1PtwrmFmi8IBq4GXqUaVW/a33Llt6amSI36uSjd0GWwc9pTT9ALlQ==" - }, - "promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", - "requires": { - "asap": "~2.0.6" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - }, - "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "react-app-rewired": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/react-app-rewired/-/react-app-rewired-2.1.8.tgz", - "integrity": "sha512-wjXPdKPLscA7mn0I1de1NHrbfWdXz4S1ladaGgHVKdn1hTgKK5N6EdGIJM0KrS6bKnJBj7WuqJroDTsPKKr66Q==", - "dev": true, - "requires": { - "semver": "^5.6.0" + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "react-colorful": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.2.0.tgz", - "integrity": "sha512-SJXywyc9oew0rOp7xjmtStiJ5N4Mk2RYc/1OptlaEnbuCz9PvILmRotoHfowdmO142HASUSgKdngL4WOHo/TnQ==", - "dev": true + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } }, - "react-dev-utils": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", - "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", - "requires": { - "@babel/code-frame": "7.10.4", - "address": "1.1.2", - "browserslist": "4.14.2", - "chalk": "2.4.2", - "cross-spawn": "7.0.3", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.1.0", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "4.1.6", - "global-modules": "2.0.0", - "globby": "11.0.1", - "gzip-size": "5.1.1", - "immer": "8.0.1", - "is-root": "2.1.0", - "loader-utils": "2.0.0", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "prompts": "2.4.0", - "react-error-overlay": "^6.0.9", - "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", - "text-table": "0.2.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "browserslist": { - "version": "4.14.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", - "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", - "requires": { - "caniuse-lite": "^1.0.30001125", - "electron-to-chromium": "^1.3.564", - "escalade": "^3.0.2", - "node-releases": "^1.1.61" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "globby": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", - "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - } + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "engines": { + "node": ">= 12.13.0" } }, - "react-docgen": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.0.tgz", - "integrity": "sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==", + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-docgen": { + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.3.tgz", + "integrity": "sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==", "dev": true, - "requires": { + "dependencies": { "@babel/core": "^7.7.5", "@babel/generator": "^7.12.11", "@babel/runtime": "^7.7.6", @@ -27468,1679 +25393,1237 @@ "neo-async": "^2.6.1", "node-dir": "^0.1.10", "strip-indent": "^3.0.0" + }, + "bin": { + "react-docgen": "bin/react-docgen.js" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/react-docgen-typescript": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", + "dev": true, + "peerDependencies": { + "typescript": ">= 4.3.x" } }, - "react-docgen-typescript": { - "version": "1.22.0", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-1.22.0.tgz", - "integrity": "sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==", + "node_modules/react-docgen/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, - "react-dom": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", - "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", - "requires": { + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" - } - }, - "react-draggable": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.3.tgz", - "integrity": "sha512-jV4TE59MBuWm7gb6Ns3Q1mxX8Azffb7oTtDtBgFkxRvhDp38YAARmRplrj0+XGkhOJB5XziArX+4HUUABtyZ0w==", - "dev": true, - "requires": { - "classnames": "^2.2.5", - "prop-types": "^15.6.0" + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" } }, - "react-element-to-jsx-string": { - "version": "14.3.2", - "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.2.tgz", - "integrity": "sha512-WZbvG72cjLXAxV7VOuSzuHEaI3RHj10DZu8EcKQpkKcAj7+qAkG5XUeSdX5FXrA0vPrlx0QsnAzZEBJwzV0e+w==", + "node_modules/react-element-to-jsx-string": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", + "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", "dev": true, - "requires": { - "@base2/pretty-print-object": "1.0.0", - "is-plain-object": "3.0.1" - }, "dependencies": { - "is-plain-object": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", - "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==", - "dev": true - } + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "18.1.0" + }, + "peerDependencies": { + "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", + "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" } }, - "react-error-overlay": { - "version": "6.0.9", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", - "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" - }, - "react-fast-compare": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", - "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==", + "node_modules/react-element-to-jsx-string/node_modules/react-is": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", + "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", "dev": true }, - "react-helmet-async": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.0.9.tgz", - "integrity": "sha512-N+iUlo9WR3/u9qGMmP4jiYfaD6pe9IvDTapZLFJz2D3xlTlCM1Bzy4Ab3g72Nbajo/0ZyW+W9hdz8Hbe4l97pQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "invariant": "^2.2.4", - "prop-types": "^15.7.2", - "react-fast-compare": "^3.2.0", - "shallowequal": "^1.1.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } - } + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" }, - "react-inspector": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-5.1.1.tgz", - "integrity": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==", + "node_modules/react-inspector": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz", + "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==", "dev": true, - "requires": { - "@babel/runtime": "^7.0.0", - "is-dom": "^1.0.0", - "prop-types": "^15.0.0" - } - }, - "react-is": { - "version": "16.13.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.0.tgz", - "integrity": "sha512-GFMtL0vHkiBv9HluwNZTggSn/sCyEt9n02aM0dSAjGGyqyNlAyftYm4phPxdvCigG15JreC5biwxCgTAJZ7yAA==" - }, - "react-lazy-load": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/react-lazy-load/-/react-lazy-load-3.0.13.tgz", - "integrity": "sha1-OwqS0zbUPT8Nc8vm81sXBQsIuCQ=", - "requires": { - "eventlistener": "0.0.1", - "lodash.debounce": "^4.0.0", - "lodash.throttle": "^4.0.0", - "prop-types": "^15.5.8" + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0 || ^18.0.0" } }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, - "react-pdf": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/react-pdf/-/react-pdf-5.3.2.tgz", - "integrity": "sha512-gT2xeUAUJem5UWNZYIQSPJAlPDbc3mIIhEgGK8P/qo1B68WIE4R4v3tNFYM9e5nqlKnGZG4Cd68SetlmnPejwA==", - "requires": { - "@babel/runtime": "^7.0.0", - "file-loader": "^6.0.0", + "node_modules/react-pdf": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/react-pdf/-/react-pdf-7.0.1.tgz", + "integrity": "sha512-fOTp1Sfc2WwveYiDVg7F7RZFJcVBgvzilAY6Ouj7rAeY5Jb/lQqTmqQUchjwlAOHsmGNiA0YfKOK5Th0hif5NQ==", + "dependencies": { + "clsx": "^1.2.1", "make-cancellable-promise": "^1.0.0", - "make-event-props": "^1.1.0", - "merge-class-names": "^1.1.1", - "merge-refs": "^1.0.0", - "pdfjs-dist": "2.6.347", - "prop-types": "^15.6.2" - } - }, - "react-popper": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.2.5.tgz", - "integrity": "sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==", - "dev": true, - "requires": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" + "make-event-props": "^1.5.0", + "merge-refs": "^1.1.3", + "pdfjs-dist": "3.6.172", + "prop-types": "^15.6.2", + "tiny-invariant": "^1.0.0", + "tiny-warning": "^1.0.0" + }, + "funding": { + "url": "https://github.com/wojtekmaj/react-pdf?sponsor=1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "react-popper-tooltip": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz", - "integrity": "sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==", - "dev": true, - "requires": { - "@babel/runtime": "^7.12.5", - "@popperjs/core": "^2.5.4", - "react-popper": "^2.2.4" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" } }, - "react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" - }, - "react-router": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", - "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", - "requires": { - "@babel/runtime": "^7.1.2", + "node_modules/react-router": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", + "dependencies": { + "@babel/runtime": "^7.12.13", "history": "^4.9.0", "hoist-non-react-statics": "^3.1.0", "loose-envify": "^1.3.1", - "mini-create-react-context": "^0.4.0", "path-to-regexp": "^1.7.0", "prop-types": "^15.6.2", "react-is": "^16.6.0", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" } }, - "react-router-dom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", - "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", - "requires": { - "@babel/runtime": "^7.1.2", + "node_modules/react-router-dom": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "dependencies": { + "@babel/runtime": "^7.12.13", "history": "^4.9.0", "loose-envify": "^1.3.1", "prop-types": "^15.6.2", - "react-router": "5.2.0", + "react-router": "5.3.4", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "node_modules/react-router/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/react-router/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/react-scripts/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-scripts/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "react-scripts": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", - "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", - "requires": { - "@babel/core": "7.12.3", - "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", - "@svgr/webpack": "5.5.0", - "@typescript-eslint/eslint-plugin": "^4.5.0", - "@typescript-eslint/parser": "^4.5.0", - "babel-eslint": "^10.1.0", - "babel-jest": "^26.6.0", - "babel-loader": "8.1.0", - "babel-plugin-named-asset-import": "^0.3.7", - "babel-preset-react-app": "^10.0.0", - "bfj": "^7.0.2", - "camelcase": "^6.1.0", - "case-sensitive-paths-webpack-plugin": "2.3.0", - "css-loader": "4.3.0", - "dotenv": "8.2.0", - "dotenv-expand": "5.1.0", - "eslint": "^7.11.0", - "eslint-config-react-app": "^6.0.0", - "eslint-plugin-flowtype": "^5.2.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-jest": "^24.1.0", - "eslint-plugin-jsx-a11y": "^6.3.1", - "eslint-plugin-react": "^7.21.5", - "eslint-plugin-react-hooks": "^4.2.0", - "eslint-plugin-testing-library": "^3.9.2", - "eslint-webpack-plugin": "^2.5.2", - "file-loader": "6.1.1", - "fs-extra": "^9.0.1", - "fsevents": "^2.1.3", - "html-webpack-plugin": "4.5.0", - "identity-obj-proxy": "3.0.0", - "jest": "26.6.0", - "jest-circus": "26.6.0", - "jest-resolve": "26.6.0", - "jest-watch-typeahead": "0.6.1", - "mini-css-extract-plugin": "0.11.3", - "optimize-css-assets-webpack-plugin": "5.0.4", - "pnp-webpack-plugin": "1.6.4", - "postcss-flexbugs-fixes": "4.2.1", - "postcss-loader": "3.0.0", - "postcss-normalize": "8.0.1", - "postcss-preset-env": "6.7.0", - "postcss-safe-parser": "5.0.2", - "prompts": "2.4.0", - "react-app-polyfill": "^2.0.0", - "react-dev-utils": "^11.0.3", - "react-refresh": "^0.8.3", - "resolve": "1.18.1", - "resolve-url-loader": "^3.1.2", - "sass-loader": "^10.0.5", - "semver": "7.3.2", - "style-loader": "1.3.0", - "terser-webpack-plugin": "4.2.3", - "ts-pnp": "1.2.0", - "url-loader": "4.1.1", - "webpack": "4.44.2", - "webpack-dev-server": "3.11.1", - "webpack-manifest-plugin": "2.2.0", - "workbox-webpack-plugin": "5.1.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/core": { - "version": "7.12.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", - "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.1", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.1", - "@babel/parser": "^7.12.3", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.1", - "@babel/types": "^7.12.1", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==" - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/types": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.0.tgz", - "integrity": "sha512-O2LVLdcnWplaGxiPBz12d0HcdN8QdxdsWYhz5LSeuukV/5mn2xUUc3gBeU4QBYPJ18g/UToe8F532XJ608prmg==", - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" - }, - "eslint-plugin-react-hooks": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", - "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" - }, - "resolve": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", - "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", - "requires": { - "is-core-module": "^2.0.0", - "path-parse": "^1.0.6" - } - } + "node_modules/react-scripts/node_modules/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "react-sizeme": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/react-sizeme/-/react-sizeme-3.0.1.tgz", - "integrity": "sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==", - "dev": true, - "requires": { - "element-resize-detector": "^1.2.2", - "invariant": "^2.2.4", - "shallowequal": "^1.1.0", - "throttle-debounce": "^3.0.1" - } - }, - "react-slick": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/react-slick/-/react-slick-0.25.2.tgz", - "integrity": "sha512-8MNH/NFX/R7zF6W/w+FS5VXNyDusF+XDW1OU0SzODEU7wqYB+ZTGAiNJ++zVNAVqCAHdyCybScaUB+FCZOmBBw==", - "requires": { - "classnames": "^2.2.5", - "enquire.js": "^2.1.6", - "json2mq": "^0.2.0", - "lodash.debounce": "^4.0.8", - "resize-observer-polyfill": "^1.5.0" - } + "node_modules/react-scripts/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "react-syntax-highlighter": { - "version": "13.5.3", - "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz", - "integrity": "sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.3.1", - "highlight.js": "^10.1.1", - "lowlight": "^1.14.0", - "prismjs": "^1.21.0", - "refractor": "^3.1.0" + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" } }, - "react-textarea-autosize": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.2.tgz", - "integrity": "sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==", - "dev": true, - "requires": { - "@babel/runtime": "^7.10.2", - "use-composed-ref": "^1.0.0", - "use-latest": "^1.0.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz", - "integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", - "dev": true - } + "node_modules/read-cache/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" } }, - "read-pkg": { + "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "requires": { + "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" }, - "dependencies": { - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - } + "engines": { + "node": ">=8" } }, - "read-pkg-up": { + "node_modules/read-pkg-up": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "requires": { + "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "requires": { + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "recursive-readdir": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", - "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", - "requires": { - "minimatch": "3.0.4" + "node_modules/recast": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.2.tgz", + "integrity": "sha512-Qv6cPfVZyMOtPszK6PgW70pUgm7gPlFitAPf0Q69rlOA0zLw2XdDcNmPbVGYicFGT9O8I7TZ/0ryJD+6COvIPw==", + "dependencies": { + "assert": "^2.0.0", + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" } }, - "redent": { + "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "requires": { + "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "refractor": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.3.1.tgz", - "integrity": "sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==", - "dev": true, - "requires": { - "hastscript": "^6.0.0", - "parse-entities": "^2.0.0", - "prismjs": "~1.23.0" - } - }, - "regenerate": { + "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" }, - "regenerate-unicode-properties": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", - "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", - "requires": { - "regenerate": "^1.4.0" - } - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - }, - "regenerator-transform": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", - "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", - "requires": { - "@babel/runtime": "^7.8.4" + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dependencies": { + "@babel/runtime": "^7.8.4" } }, - "regex-parser": { + "node_modules/regex-parser": { "version": "2.2.11", "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" }, - "regexp.prototype.flags": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", - "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "regexpp": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", - "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" - }, - "regexpu-core": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", - "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" - } - }, - "regjsgen": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", - "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" - }, - "regjsparser": { - "version": "0.6.9", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz", - "integrity": "sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==", - "requires": { - "jsesc": "~0.5.0" + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - } + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" } }, - "relateurl": { + "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } }, - "remark-external-links": { + "node_modules/remark-external-links": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", "dev": true, - "requires": { + "dependencies": { "extend": "^3.0.0", "is-absolute-url": "^3.0.0", "mdast-util-definitions": "^4.0.0", "space-separated-tokens": "^1.0.0", "unist-util-visit": "^2.0.0" }, - "dependencies": { - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", - "dev": true - } - } - }, - "remark-footnotes": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz", - "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==", - "dev": true - }, - "remark-mdx": { - "version": "1.6.22", - "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz", - "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==", - "dev": true, - "requires": { - "@babel/core": "7.12.9", - "@babel/helper-plugin-utils": "7.10.4", - "@babel/plugin-proposal-object-rest-spread": "7.12.1", - "@babel/plugin-syntax-jsx": "7.12.1", - "@mdx-js/util": "1.6.22", - "is-alphabetical": "1.0.4", - "remark-parse": "8.0.3", - "unified": "9.2.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/core": { - "version": "7.12.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", - "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.5", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.7", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.9", - "@babel/types": "^7.12.7", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", - "dev": true - }, - "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", - "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.12.1" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", - "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.14.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.4.tgz", - "integrity": "sha512-lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "remark-parse": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz", - "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==", - "dev": true, - "requires": { - "ccount": "^1.0.0", - "collapse-white-space": "^1.0.2", - "is-alphabetical": "^1.0.0", - "is-decimal": "^1.0.0", - "is-whitespace-character": "^1.0.0", - "is-word-character": "^1.0.0", - "markdown-escapes": "^1.0.0", - "parse-entities": "^2.0.0", - "repeat-string": "^1.5.4", - "state-toggle": "^1.0.0", - "trim": "0.0.1", - "trim-trailing-lines": "^1.0.0", - "unherit": "^1.0.4", - "unist-util-remove-position": "^2.0.0", - "vfile-location": "^3.0.0", - "xtend": "^4.0.1" - } - }, - "remark-slug": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.0.0.tgz", - "integrity": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==", + "node_modules/remark-slug": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", + "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", "dev": true, - "requires": { + "dependencies": { "github-slugger": "^1.0.0", "mdast-util-to-string": "^1.0.0", "unist-util-visit": "^2.0.0" - } - }, - "remark-squeeze-paragraphs": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz", - "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==", - "dev": true, - "requires": { - "mdast-squeeze-paragraphs": "^4.0.0" - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "renderkid": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", - "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", - "requires": { - "css-select": "^2.0.2", - "dom-converter": "^0.2", - "htmlparser2": "^3.10.1", - "lodash": "^4.17.20", - "strip-ansi": "^3.0.0" }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "requires": { - "lodash": "^4.17.19" - } - }, - "request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "requires": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" } }, - "require-directory": { + "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } }, - "require-from-string": { + "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "node_modules/requireindex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", + "dev": true, + "engines": { + "node": ">=0.10.5" + } }, - "requires-port": { + "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" }, - "resize-observer-polyfill": { + "node_modules/resize-observer-polyfill": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" }, - "resolve": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", - "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", - "requires": { - "path-parse": "^1.0.6" + "node_modules/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dependencies": { + "is-core-module": "^2.11.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "resolve-cwd": { + "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "requires": { + "dependencies": { "resolve-from": "^5.0.0" }, - "dependencies": { - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } + "engines": { + "node": ">=8" } }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } }, - "resolve-pathname": { + "node_modules/resolve-pathname": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - }, - "resolve-url-loader": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", - "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", - "requires": { - "adjust-sourcemap-loader": "3.0.0", - "camelcase": "5.3.1", - "compose-function": "3.0.3", - "convert-source-map": "1.7.0", - "es6-iterator": "2.0.3", - "loader-utils": "1.2.3", - "postcss": "7.0.21", - "rework": "1.0.1", - "rework-visit": "1.0.0", + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", "source-map": "0.6.1" }, - "dependencies": { - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "postcss": { - "version": "7.0.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", - "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } + "rework-visit": { + "optional": true } } }, - "restore-cursor": { + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "requires": { + "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } }, - "reusify": { + "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - }, - "rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", - "requires": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - }, - "dependencies": { - "convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" - } + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" - }, - "rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" - }, - "rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "rmc-feedback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/rmc-feedback/-/rmc-feedback-2.0.0.tgz", - "integrity": "sha512-5PWOGOW7VXks/l3JzlOU9NIxRpuaSS8d9zA3UULUCuTKnpwBHNvv1jSJzxgbbCQeYzROWUpgKI4za3X4C/mKmQ==", - "requires": { - "babel-runtime": "6.x", - "classnames": "^2.2.5" - } - }, - "rollup": { - "version": "1.32.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", - "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", - "requires": { - "@types/estree": "*", - "@types/node": "*", - "acorn": "^7.1.0" + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" } }, - "rollup-plugin-babel": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", - "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "rollup-pluginutils": "^2.8.1" + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "rollup-plugin-terser": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", - "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", - "requires": { - "@babel/code-frame": "^7.5.5", - "jest-worker": "^24.9.0", - "rollup-pluginutils": "^2.8.2", - "serialize-javascript": "^4.0.0", - "terser": "^4.6.2" - }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", "dependencies": { - "jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - } - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "requires": { - "randombytes": "^2.1.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "rollup-pluginutils": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", - "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", - "requires": { - "estree-walker": "^0.6.1" - }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", "dependencies": { - "estree-walker": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", - "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" - } + "randombytes": "^2.1.0" } }, - "rsvp": { - "version": "4.8.5", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", - "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "run-async": { + "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/run-node/-/run-node-1.0.0.tgz", - "integrity": "sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==", - "dev": true + "dev": true, + "engines": { + "node": ">=0.12.0" + } }, - "run-parallel": { + "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "requires": { + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { "queue-microtask": "^1.2.2" } }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { + "node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "requires": { + "dependencies": { "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "requires": { - "ret": "~0.1.10" + "node_modules/safe-array-concat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz", + "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sane": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", - "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", - "requires": { - "@cnakazawa/watch": "^1.0.3", - "anymatch": "^2.0.0", - "capture-exit": "^2.0.0", - "exec-sh": "^0.3.2", - "execa": "^1.0.0", - "fb-watchman": "^2.0.0", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "requires": { - "remove-trailing-separator": "^1.0.1" - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } + { + "type": "consulting", + "url": "https://feross.org/support" } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "sanitize.css": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", - "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "sass-graph": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", - "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^13.3.2" - }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass": { + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz", + "integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", + "devOptional": true, "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "sass-loader": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz", - "integrity": "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==", - "requires": { + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "neo-async": "^2.6.2", - "schema-utils": "^3.0.0", - "semver": "^7.3.2" + "neo-async": "^2.6.2" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } + "sass-embedded": { + "optional": true } } }, - "sax": { + "node_modules/sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, - "saxes": { + "node_modules/saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "requires": { + "dependencies": { "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" } }, - "scheduler": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", - "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" } }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", + "node_modules/schema-utils": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - } + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "dev": true, - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } + "node_modules/scroll-into-view-if-needed": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.10.tgz", + "integrity": "sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==", + "dependencies": { + "compute-scroll-into-view": "^3.0.2" } }, - "select": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", - "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=", - "dev": true, - "optional": true - }, - "select-hose": { + "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" }, - "selfsigned": { - "version": "1.10.8", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", - "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", - "requires": { - "node-forge": "^0.10.0" + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, - "semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - }, - "semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", - "dev": true + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "requires": { + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.7.2", + "http-errors": "2.0.0", "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", + "ms": "2.1.3", + "on-finished": "2.4.1", "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "statuses": "2.0.1" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - } + "ms": "2.0.0" } }, - "serialize-javascript": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", - "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", - "requires": { + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { "randombytes": "^2.1.0" } }, - "serve-favicon": { + "node_modules/serve-favicon": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz", - "integrity": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=", - "dev": true, - "requires": { + "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==", + "dependencies": { "etag": "~1.8.1", "fresh": "0.5.2", "ms": "2.1.1", "parseurl": "~1.3.2", "safe-buffer": "5.1.1" }, - "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - } + "engines": { + "node": ">= 0.8.0" } }, - "serve-index": { + "node_modules/serve-favicon/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "node_modules/serve-favicon/node_modules/safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", - "requires": { + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", @@ -29149,473 +26632,428 @@ "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } + "ms": "2.0.0" } }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "requires": { + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.17.1" + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "set-blocking": { + "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, - "shallow-clone": { + "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "requires": { + "dependencies": { "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" } }, - "shallow-equal": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shallow-equal/-/shallow-equal-1.2.1.tgz", - "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "requires": { - "shebang-regex": "^1.0.0" + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" } }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "shellwords": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", - "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", - "optional": true - }, - "side-channel": { + "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { + "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" }, - "dependencies": { - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "requires": { - "is-arrayish": "^0.3.1" - }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/simple-get": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", + "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", + "optional": true, "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } + "decompress-response": "^4.2.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/simple-update-notifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", + "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", + "dependencies": { + "semver": "~7.0.0" + }, + "engines": { + "node": ">=8.10.0" } }, - "sisteransi": { + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" }, - "slash": { + "node_modules/slash": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true + "dev": true, + "engines": { + "node": ">=6" + } }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" } }, - "sockjs": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", - "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", - "requires": { - "faye-websocket": "^0.11.3", - "uuid": "^3.4.0", - "websocket-driver": "^0.7.4" - } + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, - "sockjs-client": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz", - "integrity": "sha512-VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ==", - "requires": { - "debug": "^3.2.6", - "eventsource": "^1.0.7", - "faye-websocket": "^0.11.3", - "inherits": "^2.0.4", - "json3": "^3.3.3", - "url-parse": "^1.5.1" - }, + "node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" } }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "requires": { - "is-plain-obj": "^1.0.0" + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" } }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "node_modules/source-map-loader/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "requires": { + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" - }, + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "punycode": "^2.1.0" } }, - "source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + "node_modules/source-map/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/source-map/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } }, - "sourcemap-codec": { + "node_modules/sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" }, - "space-separated-tokens": { + "node_modules/space-separated-tokens": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", - "dev": true + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "requires": { + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "requires": { + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==" + "node_modules/spdx-license-ids": { + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" }, - "spdy": { + "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "requires": { + "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "spdy-transport": { + "node_modules/spdy-transport": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "requires": { + "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", @@ -29624,982 +27062,426 @@ "wbuf": "^1.7.3" } }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { + "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "requires": { - "minipass": "^3.1.1" - } - }, - "stable": { + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" }, - "stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", - "requires": { + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { "escape-string-regexp": "^2.0.0" }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } + "engines": { + "node": ">=10" } }, - "stackframe": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", - "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } }, - "state-toggle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", - "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==", - "dev": true + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" } }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - }, - "stdout-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", - "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" } }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" - }, - "store2": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.12.0.tgz", - "integrity": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==", + "node_modules/store2": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", + "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", "dev": true }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - }, + "node_modules/storybook": { + "version": "7.0.18", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.18.tgz", + "integrity": "sha512-FXMmTiomSlLPTHty7vGLr0prPf6pCV07EwAmNOYYYTskitEYV0R7hlhawByd7HuobjIhHvSTKesa1Whl86zLNA==", "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" + "@storybook/cli": "7.0.18" }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "bin": { + "sb": "index.js", + "storybook": "index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "stream-shift": { + "node_modules/stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } }, - "string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", - "dev": true + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } }, - "string-convert": { + "node_modules/string-convert": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", - "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==" }, - "string-length": { + "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "requires": { + "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" }, - "dependencies": { - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } + "engines": { + "node": ">=10" } }, - "string-natural-compare": { + "node_modules/string-natural-compare": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "requires": { + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "strip-ansi": "^6.0.1" }, - "dependencies": { - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } - } - }, - "string.prototype.matchall": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.3.tgz", - "integrity": "sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has-symbols": "^1.0.1", - "internal-slot": "^1.0.2", - "regexp.prototype.flags": "^1.3.0", - "side-channel": "^1.0.3" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - } - } - } - }, - "string.prototype.padend": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", - "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "engines": { + "node": ">=8" } }, - "string.prototype.padstart": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.padstart/-/string.prototype.padstart-3.1.2.tgz", - "integrity": "sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - } - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } - } - }, - "string.prototype.trimend": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz", - "integrity": "sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - }, - "is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==" - }, - "is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "object-inspect": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==" - }, - "object.assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz", - "integrity": "sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.0", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - } - } + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, - "string.prototype.trimleft": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz", - "integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==", - "requires": { - "define-properties": "^1.1.3", - "function-bind": "^1.1.1" + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" } }, - "string.prototype.trimright": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz", - "integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==", - "requires": { - "define-properties": "^1.1.3", - "function-bind": "^1.1.1" + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimstart": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz", - "integrity": "sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1" - }, - "dependencies": { - "es-abstract": { - "version": "1.18.0-next.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", - "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-negative-zero": "^2.0.0", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - }, - "is-callable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", - "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==" - }, - "is-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", - "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "object-inspect": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==" - }, - "object.assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.1.tgz", - "integrity": "sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.0", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - } + "node_modules/string.prototype.trim": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "stringify-object": { + "node_modules/stringify-object": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "requires": { + "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" }, - "dependencies": { - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - } + "engines": { + "node": ">=4" } }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "strip-comments": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", - "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", - "requires": { - "babel-extract-comments": "^1.0.0", - "babel-plugin-transform-object-rest-spread": "^6.26.0" + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" } }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "requires": { + "dependencies": { "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "strip-json-comments": { + "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "style-loader": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", - "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^2.7.0" + "node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "style-to-object": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", - "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", - "dev": true, - "requires": { - "inline-style-parser": "0.1.1" + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/sucrase": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", + "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "supports-color": { + "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { + "dependencies": { "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "requires": { + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "svg-parser": { + "node_modules/svg-parser": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" }, - "svgo": { + "node_modules/svgo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "requires": { + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", "css-select": "^2.0.0", @@ -30613,2993 +27495,2125 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" } }, - "symbol-tree": { + "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, - "symbol.prototype.description": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/symbol.prototype.description/-/symbol.prototype.description-1.0.4.tgz", - "integrity": "sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.2" - }, - "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" - }, - "dependencies": { - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - } - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - }, - "dependencies": { - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - } - } - }, - "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true - }, - "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", - "dev": true - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - } + "node_modules/synchronous-promise": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", + "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==" + }, + "node_modules/tailwindcss": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", + "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "table": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz", - "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==", - "requires": { - "ajv": "^8.0.1", - "lodash.clonedeep": "^4.5.0", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0" + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dependencies": { - "ajv": { - "version": "8.6.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz", - "integrity": "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "dev": true, - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" + "node_modules/tar": { + "version": "6.1.15", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz", + "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "telejson": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/telejson/-/telejson-5.3.3.tgz", - "integrity": "sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==", - "dev": true, - "requires": { - "@types/is-function": "^1.0.0", - "global": "^4.4.0", - "is-function": "^1.0.2", - "is-regex": "^1.1.2", - "is-symbol": "^1.0.3", - "isobject": "^4.0.0", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3" + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/telejson": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz", + "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==", "dependencies": { - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" - } - }, - "isobject": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", - "integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==", - "dev": true - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - } + "memoizerific": "^1.11.3" } }, - "temp-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } }, - "tempy": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", - "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", - "requires": { - "temp-dir": "^1.0.0", - "type-fest": "^0.3.1", - "unique-string": "^1.0.0" + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dependencies": { + "glob": "^7.1.3" }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", "dependencies": { - "type-fest": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", - "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" - } + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "dev": true + "node_modules/tempy/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "terminal-link": { + "node_modules/terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "requires": { + "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "terser": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", - "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", - "requires": { + "node_modules/terser": { + "version": "5.17.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.6.tgz", + "integrity": "sha512-V8QHcs8YuyLkLHsJO5ucyff1ykrLVsR4dNnS//L5Y3NiSXpbK1J+WMVUs67eI0KTxs9JtHhgEQpXQVHlHI92DQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" + "source-map-support": "~0.5.20" }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "terser-webpack-plugin": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", - "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", - "requires": { - "cacache": "^15.0.5", - "find-cache-dir": "^3.3.1", - "jest-worker": "^26.5.0", - "p-limit": "^3.0.2", - "schema-utils": "^3.0.0", - "serialize-javascript": "^5.0.1", - "source-map": "^0.6.1", - "terser": "^5.3.4", - "webpack-sources": "^1.4.3" - }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { - "semver": "^6.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - } - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "requires": { - "find-up": "^4.0.0" - } - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "esbuild": { + "optional": true }, - "terser": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz", - "integrity": "sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==", - "requires": { - "commander": "^2.20.0", - "source-map": "~0.7.2", - "source-map-support": "~0.5.19" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } - } + "uglify-js": { + "optional": true } } }, - "test-exclude": { + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "requires": { + "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "text-table": { + "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" }, - "throat": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", - "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } }, - "throttle-debounce": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-3.0.1.tgz", - "integrity": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==", - "dev": true + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } }, - "through": { + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/throttle-debounce": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.0.tgz", + "integrity": "sha512-2iQTSgkkc1Zyk0MeVrt/3BvuOXYPl/R8Z0U2xxo9rjwNciaHDG3R+Lm6dh4EeUci49DanvBnuqI6jshoQQRGEg==", + "engines": { + "node": ">=12.22" + } + }, + "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "through2": { + "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { + "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" - }, - "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, - "thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "node_modules/through2/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "requires": { - "setimmediate": "^1.0.4" + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, - "tiny-emitter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", - "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==", - "dev": true, - "optional": true + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } }, - "tiny-invariant": { + "node_modules/thunky": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", - "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" }, - "tiny-warning": { + "node_modules/tiny-warning": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, - "tinycolor2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz", - "integrity": "sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=" - }, - "tmp": { + "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, - "requires": { + "dependencies": { "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" } }, - "tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "to-fast-properties": { + "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "toggle-selection": { + "node_modules/toggle-selection": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" - }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" } }, - "tr46": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", - "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", - "requires": { - "punycode": "^2.1.1" + "node_modules/tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" } }, - "trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=", - "dev": true - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "trim-trailing-lines": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz", - "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==", - "dev": true - }, - "trough": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", - "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", - "dev": true - }, - "true-case-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", - "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", - "dev": true, - "requires": { - "glob": "^7.1.2" + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" } }, - "tryer": { + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/tryer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" }, - "ts-dedent": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.1.1.tgz", - "integrity": "sha512-riHuwnzAUCfdIeTBNUq7+Yj+ANnrMXo/7+Z74dIdudS7ys2k8aSGMzpJRMFDF7CLwUTbtvi1ZZff/Wl+XxmqIA==", - "dev": true - }, - "ts-essentials": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-2.0.12.tgz", - "integrity": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==", - "dev": true - }, - "ts-node": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", - "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", - "requires": { + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "engines": { + "node": ">=6.10" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "peer": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", - "source-map-support": "^0.5.17", + "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } } }, - "ts-pnp": { + "node_modules/ts-node/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "peer": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "peer": true + }, + "node_modules/ts-pnp": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "tsconfig-paths": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz", - "integrity": "sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q==", - "requires": { - "json5": "^2.2.0", - "minimist": "^1.2.0", + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", "strip-bom": "^3.0.0" } }, - "tslib": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", - "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==" + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", + "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==" }, - "tsutils": { + "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "requires": { + "dependencies": { "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, - "type-check": { + "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "requires": { + "dependencies": { "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-detect": { + "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + "node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "typedarray": { + "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, - "typedarray-to-buffer": { + "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "requires": { + "dependencies": { "is-typedarray": "^1.0.0" } }, - "typescript": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", - "integrity": "sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==" - }, - "ua-parser-js": { - "version": "0.7.21", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz", - "integrity": "sha512-+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==" - }, - "unbox-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", - "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, - "dependencies": { - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - } - } - }, - "unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==", - "dev": true - }, - "unherit": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", - "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", - "dev": true, - "requires": { - "inherits": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" - }, - "unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" + "engines": { + "node": ">=4.2.0" } }, - "unicode-match-property-value-ecmascript": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", - "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" - }, - "unicode-property-aliases-ecmascript": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", - "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" - }, - "unified": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", - "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", - "dev": true, - "requires": { - "bail": "^1.0.0", - "extend": "^3.0.0", - "is-buffer": "^2.0.0", - "is-plain-obj": "^2.0.0", - "trough": "^1.0.0", - "vfile": "^4.0.0" + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" }, - "dependencies": { - "is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true - }, - "is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true - } - } - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" + "engines": { + "node": ">=0.8.0" } }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", - "requires": { - "crypto-random-string": "^1.0.0" + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "unist-builder": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz", - "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==", - "dev": true + "node_modules/unfetch": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", + "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" }, - "unist-util-generated": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", - "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", - "dev": true + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } }, - "unist-util-is": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", - "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", - "dev": true + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } }, - "unist-util-position": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", - "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", - "dev": true + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } }, - "unist-util-remove": { + "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz", - "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", - "dev": true, - "requires": { - "unist-util-is": "^4.0.0" + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" } }, - "unist-util-remove-position": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz", - "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==", - "dev": true, - "requires": { - "unist-util-visit": "^2.0.0" + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "unist-util-stringify-position": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", - "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", "dev": true, - "requires": { - "@types/unist": "^2.0.2" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "unist-util-visit": { + "node_modules/unist-util-visit": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", "dev": true, - "requires": { + "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "unist-util-visit-parents": { + "node_modules/unist-util-visit-parents": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", "dev": true, - "requires": { + "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "universalify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", - "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unplugin": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz", + "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.4.5" + } + }, + "node_modules/unplugin/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } }, - "unquote": { + "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "engines": { + "node": ">=8" } }, - "upath": { + "node_modules/upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "requires": { - "punycode": "^2.1.0" + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" } }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "url-loader": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", - "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", - "requires": { - "loader-utils": "^2.0.0", - "mime-types": "^2.1.27", - "schema-utils": "^3.0.0" - }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "mime-db": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", - "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==" - }, - "mime-types": { - "version": "2.1.30", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", - "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", - "requires": { - "mime-db": "1.47.0" - } - }, - "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", - "requires": { - "@types/json-schema": "^7.0.6", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - } + "punycode": "^2.1.0" } }, - "url-parse": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", - "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", - "requires": { + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - }, - "use-composed-ref": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.1.0.tgz", - "integrity": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==", - "dev": true, - "requires": { - "ts-essentials": "^2.0.3" - } - }, - "use-isomorphic-layout-effect": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz", - "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==", - "dev": true - }, - "use-latest": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.0.tgz", - "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==", + "node_modules/use-resize-observer": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", + "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==", "dev": true, - "requires": { - "use-isomorphic-layout-effect": "^1.0.0" + "dependencies": { + "@juggle/resize-observer": "^3.3.1" + }, + "peerDependencies": { + "react": "16.8.0 - 18", + "react-dom": "16.8.0 - 18" } }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "requires": { - "inherits": "2.0.3" - }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, - "util.promisify": { + "node_modules/util.promisify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "requires": { + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "utila": { + "node_modules/utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - }, - "uuid-browser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid-browser/-/uuid-browser-3.1.0.tgz", - "integrity": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=", - "dev": true + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } }, - "v8-to-istanbul": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.1.tgz", - "integrity": "sha512-p0BB09E5FRjx0ELN6RgusIPsSPhtgexSRcKETybEs6IGOTXJSZqfwxp7r//55nnu0f1AxltY5VvdVqy2vZf9AA==", - "requires": { + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "peer": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" + "convert-source-map": "^1.6.0" }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } + "engines": { + "node": ">=10.12.0" } }, - "validate-npm-package-license": { + "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "requires": { + "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "value-equal": { + "node_modules/value-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" }, - "vary": { + "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - }, - "vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vfile": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "is-buffer": "^2.0.0", - "unist-util-stringify-position": "^2.0.0", - "vfile-message": "^2.0.0" - }, - "dependencies": { - "is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "dev": true - } - } - }, - "vfile-location": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", - "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", - "dev": true - }, - "vfile-message": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", - "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", - "dev": true, - "requires": { - "@types/unist": "^2.0.0", - "unist-util-stringify-position": "^2.0.0" + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" } }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, - "w3c-hr-time": { + "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "requires": { + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { "browser-process-hrtime": "^1.0.0" } }, - "w3c-xmlserializer": { + "node_modules/w3c-xmlserializer": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "requires": { + "dependencies": { "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" } }, - "walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", - "requires": { - "makeerror": "1.0.x" - } - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", - "requires": { - "chokidar": "^3.4.1", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.1" + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" } }, - "watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "optional": true, - "requires": { - "chokidar": "^2.1.8" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "optional": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "optional": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "optional": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "optional": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "optional": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "optional": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "optional": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "optional": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "optional": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "optional": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "optional": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "optional": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "optional": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "optional": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "optional": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "wbuf": { + "node_modules/wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "requires": { + "dependencies": { "minimalistic-assert": "^1.0.0" } }, - "wcwidth": { + "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", - "dev": true, - "requires": { + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dependencies": { "defaults": "^1.0.3" } }, - "web-namespaces": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", - "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", - "dev": true + "node_modules/web-streams-polyfill": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", + "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "engines": { + "node": ">= 8" + } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" - }, - "webpack": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", - "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.84.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.84.1.tgz", + "integrity": "sha512-ZP4qaZ7vVn/K8WN/p990SGATmrL1qg4heP/MrVneczYtpDGJWlrgZv55vxaV2ul885Kz+25MP2kSXkPe3LZfmg==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.3.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - } - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "requires": { - "randombytes": "^2.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "enhanced-resolve": "^5.14.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true } } }, - "webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dependencies": { - "mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" - } + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "webpack-dev-server": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", - "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", - "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.0.tgz", + "integrity": "sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.8", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "^0.3.21", - "sockjs-client": "^1.5.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "requires": { - "resolve-from": "^3.0.0" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } + "webpack-cli": { + "optional": true } } }, - "webpack-filter-warnings-plugin": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz", - "integrity": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==", - "dev": true + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "webpack-hot-middleware": { - "version": "2.25.0", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz", - "integrity": "sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==", - "dev": true, - "requires": { - "ansi-html": "0.0.7", - "html-entities": "^1.2.0", - "querystring": "^0.2.0", - "strip-ansi": "^3.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", + "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "webpack-manifest-plugin": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", - "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", - "requires": { - "fs-extra": "^7.0.0", - "lodash": ">=3.5 <5", - "object.entries": "^1.1.0", - "tapable": "^1.0.0" + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "engines": { + "node": ">=10.0.0" }, - "dependencies": { - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "utf-8-validate": { + "optional": true } } }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - }, + "node_modules/webpack-hot-middleware": { + "version": "2.25.3", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz", + "integrity": "sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==", + "devOptional": true, "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } + "ansi-html-community": "0.0.8", + "html-entities": "^2.1.0", + "strip-ansi": "^6.0.0" } }, - "webpack-virtual-modules": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz", - "integrity": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==", - "dev": true, - "requires": { - "debug": "^3.0.0" + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", + "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "dev": true + }, + "node_modules/webpack/node_modules/@types/estree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", + "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "peerDependencies": { + "acorn": "^8" } }, - "websocket-driver": { + "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "requires": { + "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "websocket-extensions": { + "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } }, - "whatwg-encoding": { + "node_modules/whatwg-encoding": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "requires": { + "dependencies": { "iconv-lite": "0.4.24" } }, - "whatwg-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz", - "integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==" + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" }, - "whatwg-mimetype": { + "node_modules/whatwg-mimetype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" }, - "whatwg-url": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz", - "integrity": "sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==", - "requires": { - "lodash": "^4.7.0", - "tr46": "^2.0.2", - "webidl-conversions": "^6.1.0" + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { + "node_modules/whatwg-url/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "requires": { + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2" + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "widest-line": { + "node_modules/widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "requires": { + "dependencies": { "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "word-wrap": { + "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "engines": { + "node": ">=0.10.0" + } }, - "workbox-background-sync": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", - "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, - "workbox-broadcast-update": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", - "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-build": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", - "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", - "requires": { - "@babel/core": "^7.8.4", - "@babel/preset-env": "^7.8.4", - "@babel/runtime": "^7.8.4", - "@hapi/joi": "^15.1.0", - "@rollup/plugin-node-resolve": "^7.1.1", - "@rollup/plugin-replace": "^2.3.1", - "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", "common-tags": "^1.8.0", "fast-json-stable-stringify": "^2.1.0", - "fs-extra": "^8.1.0", + "fs-extra": "^9.0.1", "glob": "^7.1.6", - "lodash.template": "^4.5.0", + "lodash": "^4.17.20", "pretty-bytes": "^5.3.0", - "rollup": "^1.31.1", - "rollup-plugin-babel": "^4.3.3", - "rollup-plugin-terser": "^5.3.1", - "source-map": "^0.7.3", - "source-map-url": "^0.4.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", "stringify-object": "^3.3.0", - "strip-comments": "^1.0.2", - "tempy": "^0.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", "upath": "^1.2.0", - "workbox-background-sync": "^5.1.4", - "workbox-broadcast-update": "^5.1.4", - "workbox-cacheable-response": "^5.1.4", - "workbox-core": "^5.1.4", - "workbox-expiration": "^5.1.4", - "workbox-google-analytics": "^5.1.4", - "workbox-navigation-preload": "^5.1.4", - "workbox-precaching": "^5.1.4", - "workbox-range-requests": "^5.1.4", - "workbox-routing": "^5.1.4", - "workbox-strategies": "^5.1.4", - "workbox-streams": "^5.1.4", - "workbox-sw": "^5.1.4", - "workbox-window": "^5.1.4" - }, - "dependencies": { - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" } }, - "workbox-cacheable-response": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", - "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "workbox-core": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", - "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } }, - "workbox-expiration": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", - "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-google-analytics": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", - "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", - "requires": { - "workbox-background-sync": "^5.1.4", - "workbox-core": "^5.1.4", - "workbox-routing": "^5.1.4", - "workbox-strategies": "^5.1.4" + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, - "workbox-navigation-preload": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", - "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-precaching": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", - "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-range-requests": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", - "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-routing": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", - "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-strategies": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", - "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", - "requires": { - "workbox-core": "^5.1.4", - "workbox-routing": "^5.1.4" + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-streams": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", - "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", - "requires": { - "workbox-core": "^5.1.4", - "workbox-routing": "^5.1.4" + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-sw": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", - "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "dependencies": { + "workbox-core": "6.6.0" + } }, - "workbox-webpack-plugin": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", - "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", - "requires": { - "@babel/runtime": "^7.5.5", - "fast-json-stable-stringify": "^2.0.0", - "source-map-url": "^0.4.0", - "upath": "^1.1.2", - "webpack-sources": "^1.3.0", - "workbox-build": "^5.1.4" + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" } }, - "workbox-window": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", - "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", - "requires": { - "workbox-core": "^5.1.4" + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" } }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "requires": { - "errno": "~0.1.7" + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" } }, - "worker-rpc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", - "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", - "requires": { - "microevent.ts": "~0.1.1" + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" } }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "requires": { + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "ws": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz", - "integrity": "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==" + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xml-name-validator": { + "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" }, - "xmlchars": { + "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" }, - "xtend": { + "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, - "yaml": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.7.2.tgz", - "integrity": "sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==", - "requires": { - "@babel/runtime": "^7.6.3" - } - }, - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" } }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" } }, - "yn": { + "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "peer": true, + "engines": { + "node": ">=6" + } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - }, - "zwitch": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", - "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", - "dev": true + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } } } diff --git a/client/package.json b/client/package.json index a3d9889e..17fc44a6 100644 --- a/client/package.json +++ b/client/package.json @@ -3,21 +3,25 @@ "version": "0.1.0", "private": true, "dependencies": { - "@ant-design/icons": "^4.6.2", - "@fontsource/source-sans-pro": "^4.5.0", - "@hcaptcha/react-hcaptcha": "^0.3.6", - "@lingui/core": "^3.10.4", - "@lingui/macro": "^3.10.2", - "@lingui/react": "^3.5.1", - "antd": "^3.26.12", + "@ant-design/icons": "^5.1.2", + "@fontsource/source-sans-pro": "^5.0.1", + "@hcaptcha/react-hcaptcha": "^1.8.1", + "@lingui/core": "^3.13.0", + "@lingui/macro": "^3.14.0", + "@lingui/react": "^3.13.0", + "antd": "^5.5.1", + "classnames": "^2.3.2", + "customize-cra": "^1.0.0", "lodash": "^4.17.21", - "qs": "^6.10.1", - "react": "^16.14.0", - "react-dom": "^16.14.0", - "react-pdf": "^5.3.2", + "prop-types": "^15.8.1", + "qs": "^6.11.2", + "react": "^18.0.0", + "react-dom": "^18.0.0", + "react-pdf": "^7.0.1", "react-router-dom": "^5.2.0", - "react-scripts": "^4.0.3", - "typescript": "^4.2.4" + "react-scripts": "^5.0.1", + "storybook": "^7.0.18", + "typescript": "^4.5.4" }, "scripts": { "start": "react-app-rewired start", @@ -25,13 +29,13 @@ "test": "react-app-rewired test", "eject": "react-app-rewired eject", "add-locale": "lingui add-locale", - "extract": "lingui extract", + "extract": "cross-env NODE_ENV=development lingui extract", "compile": "lingui compile", "lint": "eslint ./src --ext .js,.jsx", "precommit": "lint-staged", "precommit-msg": "echo 'Pre-commit checks...' && exit 0", - "storybook": "start-storybook -p 6006 -s public", - "build-storybook": "build-storybook -s public" + "storybook": "storybook dev -p 6006 -s public", + "build-storybook": "storybook build -s public" }, "lint-staged": { "src/**/*.{js,jsx,json,css,md}": [ @@ -56,46 +60,44 @@ ] }, "devDependencies": { - "@babel/core": "^7.14.8", + "@babel/cli": "^7.21.5", + "@babel/core": "^7.21.8", + "@babel/eslint-parser": "^7.21.8", + "@babel/plugin-proposal-private-property-in-object": "^7.21.0", + "@babel/plugin-transform-private-property-in-object": "^7.22.0", + "@babel/preset-env": "^7.22.0", + "@babel/preset-react": "^7.22.0", "@lingui/babel-preset-react": "^2.9.2", - "@lingui/cli": "^3.10.2", - "@storybook/addon-actions": "^6.3.7", - "@storybook/addon-essentials": "^6.2.9", - "@storybook/addon-links": "^6.2.9", - "@storybook/node-logger": "^6.2.9", - "@storybook/preset-create-react-app": "^3.2.0", - "@storybook/react": "^6.3.7", - "@testing-library/jest-dom": "^5.14.1", - "@testing-library/react": "^12.0.0", + "@lingui/cli": "^3.12.1", + "@storybook/addon-actions": "^7.0.17", + "@storybook/addon-essentials": "^7.0.17", + "@storybook/addon-links": "^7.0.17", + "@storybook/node-logger": "^7.0.17", + "@storybook/preset-create-react-app": "^7.0.17", + "@storybook/react": "^7.0.17", + "@storybook/react-webpack5": "^7.0.18", + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^14.0.0", "babel-core": "^7.0.0-bridge.0", - "babel-plugin-import": "^1.13.3", - "babel-plugin-macros": "^2.8.0", - "customize-cra": "^1.0.0", - "eslint": "^7.31.0", - "eslint-config-airbnb": "^18.2.1", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "^2.23.4", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-react": "^7.22.0", - "eslint-plugin-react-hooks": "^2.5.1", - "husky": "1.3.1", - "less": "^3.12.2", - "less-loader": "^7.2.1", - "lint-staged": "^10.5.3", - "node-sass": "^4.14.1", - "prettier": "^2.2.1", - "react-app-rewired": "^2.1.8" + "babel-plugin-macros": "^3.1.0", + "cross-env": "^7.0.3", + "eslint": "^8.41.0", + "eslint-config-airbnb": "^19.0.4", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-storybook": "^0.6.12", + "husky": "^8.0.3", + "less": "^4.1.3", + "less-loader": "^11.1.0", + "lint-staged": "^13.2.2", + "prettier": "^2.8.8", + "react-app-rewired": "^2.2.1", + "sass": "^1.62.1" }, - "eslintConfig": { - "overrides": [ - { - "files": [ - "**/*.stories.*" - ], - "rules": { - "import/no-anonymous-default-export": "off" - } - } - ] + "overrides": { + "react-refresh": "0.11.0" } } diff --git a/client/public/favicon192.png b/client/public/favicon192.png index 5aa8c9cc..b155e9a6 100644 Binary files a/client/public/favicon192.png and b/client/public/favicon192.png differ diff --git a/client/public/favicon512.png b/client/public/favicon512.png index 7dbb9068..ed08cc24 100644 Binary files a/client/public/favicon512.png and b/client/public/favicon512.png differ diff --git a/client/public/index.html b/client/public/index.html index 1b7edec7..4a141eb4 100644 --- a/client/public/index.html +++ b/client/public/index.html @@ -1,5 +1,5 @@ - + @@ -35,32 +35,32 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - - - - - - + + + + + + Bulina Roșie diff --git a/client/public/seismic.png b/client/public/seismic.png index 86f4af7d..3595e0a9 100644 Binary files a/client/public/seismic.png and b/client/public/seismic.png differ diff --git a/client/public/share.png b/client/public/share.png index 86f4af7d..fd682c88 100644 Binary files a/client/public/share.png and b/client/public/share.png differ diff --git a/client/src/App.js b/client/src/App.js index d05f5769..0158e71a 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -2,66 +2,67 @@ import React, { useEffect } from 'react'; import { BrowserRouter as Router, Switch, Route } from 'react-router-dom'; import { I18nProvider } from '@lingui/react'; import { i18n } from '@lingui/core'; -import { useGlobalContext } from './context'; +import { ConfigProvider, App as AntdApp } from 'antd'; import Home from './containers/home'; -import About from './containers/about'; -import Guide from './containers/guide'; -import Blog from './containers/blog'; -import BlogPost from './containers/blog-post'; import Terms from './containers/Terms'; import Policy from './containers/Policy'; import NotFound from './containers/404/404'; import AddBuilding from './containers/add-building'; import ThankYou from './containers/thankyou'; +import BuildingMap from './containers/building-map'; import ScrollToTop from './components/ScrollToTop'; - +import { dynamicActivate, getCurrentLanguage } from './utils/i18n'; import './styles/theme.scss'; -const App = () => { - const { currentLanguage, languageChange } = useGlobalContext(); - +function App() { useEffect(() => { - languageChange(currentLanguage); + dynamicActivate(getCurrentLanguage()); }, []); - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + <> + + + + + + + + + + + + + + + + + + + + + + + + + + ); -}; +} export default App; diff --git a/client/src/components/BlogCard/BlogCard.stories.js b/client/src/components/BlogCard/BlogCard.stories.js index c0e7a666..5ca5eb98 100644 --- a/client/src/components/BlogCard/BlogCard.stories.js +++ b/client/src/components/BlogCard/BlogCard.stories.js @@ -1,6 +1,12 @@ import React from 'react'; +import { Col } from 'antd'; import BlogCard from './index'; +export default { + title: 'BlogCard', + component: BlogCard, +}; + const Template = (args) => ; const blogCard = ( @@ -9,7 +15,22 @@ const blogCard = ( export const Default = Template.bind({}); Default.args = blogCard.props; -export default { - title: 'BlogCard', - component: BlogCard, +export const BlogCardWithBorder = Template.bind({}); +BlogCardWithBorder.args = { ...Default.args, cardIndex: 0 }; + +export const BlogCardFixedWidth = Template.bind({}); +BlogCardFixedWidth.args = { ...BlogCardWithBorder.args }; +BlogCardFixedWidth.decorators = [ + (Story) => ( + + + + ), +]; + +export const BlogCardWithLongTitle = Template.bind({}); +BlogCardWithLongTitle.args = { + ...BlogCardFixedWidth.args, + title: 'Blog Card with Veeeeeeryyyyyy Loooooooong Title', }; +BlogCardWithLongTitle.decorators = [...BlogCardFixedWidth.decorators]; diff --git a/client/src/components/BlogCard/index.js b/client/src/components/BlogCard/index.js index 6ae396b2..86132159 100644 --- a/client/src/components/BlogCard/index.js +++ b/client/src/components/BlogCard/index.js @@ -1,26 +1,15 @@ import { React } from 'react'; import { Link } from 'react-router-dom'; -import { Card, Typography } from 'antd'; - -const { Title } = Typography; +import { Card } from 'antd'; export default ({ title, imageUrl, slug, cardIndex }) => { return ( - -
- - {title} - -
-
- {title} -
-
+ } + title={title} + /> ); }; diff --git a/client/src/components/BlogItem/__snapshots__/BlogItem.test.js.snap b/client/src/components/BlogItem/__snapshots__/BlogItem.test.js.snap index 51c346a2..62f053be 100644 --- a/client/src/components/BlogItem/__snapshots__/BlogItem.test.js.snap +++ b/client/src/components/BlogItem/__snapshots__/BlogItem.test.js.snap @@ -8,10 +8,10 @@ exports[`BlogItem component should be translated correctly in English 1`] = ` href="//undefined" >
Title
Written by First Last • 1/1/1970

Title

Lorem ipsum dolor sit amet consectetur adipisicing elit
@@ -51,10 +51,10 @@ exports[`BlogItem component should be translated correctly in Romanian 1`] = ` href="//undefined" >
Title
Scris de First Last • 1/1/1970

Title

Lorem ipsum dolor sit amet consectetur adipisicing elit
diff --git a/client/src/components/BlogPreview/index.js b/client/src/components/BlogPreview/index.js index 581bf40a..1cc4c821 100644 --- a/client/src/components/BlogPreview/index.js +++ b/client/src/components/BlogPreview/index.js @@ -1,5 +1,6 @@ import React, { useEffect, useState } from 'react'; -import { Row, Col, Icon, Typography, Spin } from 'antd'; +import { Row, Col, Typography, Spin } from 'antd'; +import { EnvironmentOutlined } from '@ant-design/icons'; import { Trans } from '@lingui/macro'; import config from '../../config'; import BlogCard from '../BlogCard'; @@ -66,7 +67,7 @@ export default ({ title, postSlug = null }) => { - <Icon type="environment" /> + <EnvironmentOutlined /> {title} @@ -87,14 +88,14 @@ export default ({ title, postSlug = null }) => { - <Icon type="environment" /> + <EnvironmentOutlined /> {title} - + {state.posts.map((post, i) => ( - + ))} diff --git a/client/src/components/BuildingDetails/BuildingDetailsFooter.js b/client/src/components/BuildingDetails/BuildingDetailsFooter.js index cfd90db4..c99dcce8 100644 --- a/client/src/components/BuildingDetails/BuildingDetailsFooter.js +++ b/client/src/components/BuildingDetails/BuildingDetailsFooter.js @@ -1,7 +1,7 @@ import React from 'react'; import { Button, Col, Row } from 'antd'; import { Trans } from '@lingui/macro'; -import { InfoCircleFilled } from '@ant-design/icons'; +import { InfoCircleFilled, PlusCircleOutlined } from '@ant-design/icons'; const BuildingDetailsFooter = () => (
@@ -16,7 +16,7 @@ const BuildingDetailsFooter = () => (